--- id: 587d781e367417b2b2512aca title: Move a Relatively Positioned Element with CSS Offsets challengeType: 0 videoUrl: 'https://scrimba.com/c/c9bQEA4' forumTopicId: 301065 localeTitle: 使用 CSS 偏移移动相对定位的元素 --- ## Description
CSS 里面的 topbottomleftright 定义了元素在相应方位的偏移距离。元素将从当前位置,向属性相反的方向偏移。就像你在上一个挑战看到的,top 属性使 h2 向下移动。left 属性使元素向右移动。
## Instructions
通过 CSS 属性把 h2 向上移动 10 像素,向右移动 15 像素。
## Tests
```yml tests: - text: '你应该使用 CSS 属性使 h2 相对当前位置向上移动 10px。也就是说,从 h2 当前位置远离 bottom 10px。' testString: assert($('h2').css('bottom') == '10px', '你应该使用 CSS 属性使 h2 相对当前位置向上移动 10px。也就是说,从 h2 当前位置远离 bottom 10px。'); - text: '你应该使用 CSS 属性使 h2 相对当前位置向右移动 15px。也就是说,从 h2 当前位置远离 left 15px。' testString: assert($('h2').css('left') == '15px', '你应该使用 CSS 属性使 h2 相对当前位置向右移动 15px。也就是说,从 h2 当前位置远离left 15px。'); ```
## Challenge Seed
```html

论如何优雅定位

我要离 h1 近一点!

我觉得 h2 没变,还是在它原来的位置,相离莫相忘,且行且珍惜。

```
## Solution
```html // solution required ```