Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Foundations The Box Model Positioning Properties

Tomy Lim
Tomy Lim
4,571 Points

How does Relative in Position work?

Having trouble remembering it.

Isaac Asante
Isaac Asante
4,752 Points

Hi Tomy, there's no better way to get the answer to your question than watching this mini-course of Relative Positioning by Guil Hernandez from Treehouse's CSS Layout Techniques track: http://teamtreehouse.com/library/css-layout-techniques/positioning-schemes/relative-positioning

Hope this helps!

2 Answers

Relative positioning is a way of positioning something relative to where it already was placed by the HTML. For example:

img {
    position: relative;
    top: 50px;
    left: 50px;
}

The above code would drag the image 50px downwards and to the right.

I hope this helped clear some things up!

-Luke

I see your question has already been answered. But css-tricks has a great page on it.