--- title: Move a Relatively Positioned Element with CSS Offsets --- # Move a Relatively Positioned Element with CSS Offsets --- ## Hints ### Hint 1 Use the `left` property for offsetting the element right. ### Hint 2 Use the `bottom` property for offsetting the element top. --- ## Solutions
Solution 1 (Click to Show/Hide) ```html

On Being Well-Positioned

Move me!

I still think the h2 is where it normally sits.

``` #### Code Explanation * The `h2{}` selects the `h2` element. * `left: 15px;` offsets the `h2` `15px` to the right. * `bottom: 10px;` offsets the `h2` `10px` to the top.