Review: Layout
DISPLAY AND POSITIONING Review: Layout Great job! In this lesson, you learned how to control the positioning of elements on a web page. Let’s review what you’ve learned so far: The position property allows you to specify the position of an element. When set to relative , an element’s position is relative to its default position on the page. When set to absolute , an element’s position is relative to its closest positioned parent element. It can be pinned to any part of the web page, but the element will still move with the rest of the document when the page is scrolled. When set to fixed , an element’s position can be pinned to any part of the web page. The element will remain in view no matter what. When set to sticky , an element can stick to a defined offset position when the user scrolls its parent container. The z-index of an element specifies how far back or how far forward an element appears on the page when it overlaps other...