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

"Set its position to relative, then offset it 80px from the left and move it up 20px." (Challenge task 4 of 6)

.bottom { position: relative; left: 80px; top: 20px; } ???? I don't understand isn't this what they mean?

2 Answers

To move it up you would use a negative value. The instructions specify -20px

oh yea, so they do geez I feel lame thx for the help dude!

You're welcome. Don't feel lame. Stuff like this is going to happen many times.

By setting a value at the "top" you have moved it "down" 20 pix...change top to bottom. .

Already tried that, it still said to recheck code.