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 trial2 Answers
Luke Glazebrook
13,564 PointsRelative 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
Carman A
7,672 PointsI see your question has already been answered. But css-tricks has a great page on it.
Isaac Asante
4,752 PointsIsaac Asante
4,752 PointsHi 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!