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 Layout Basics Positioning Page Content How Absolute Positioning Works

William Keely
William Keely
7,295 Points

Positioning Context?

Why is the positioning context the viewport? Is it absolute referencing always in relation tot he viewport? This seems to glossed over.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The viewport is the default positioning context.

You can create another positioning context just by setting a parent or ancestor element's position to "relative". Then the offsets of the absolutely positioned element will be based on the other element and not the viewport.

Here's a Treehouse blog post with some addition explanation and illustrations.

William Keely
William Keely
7,295 Points

Thank you. Also Guil explained this more in the next video, so I have a good grasp of it now