#110: Quick Overview of CSS Position Values




CSS-Tricks Screencasts show

Summary: <p>This is a quick beginner-level overview of the different CSS position values. In a nutshell: relative allows you to "nudge" and leaves the element's original position in the page flow. Absolute and fixed allow for exact placement of elements and remove them from the page flow. Fixed positioned elements are unaffected by scrolling. All of them set a new positioning context and allow z-index to work. </p> <p><strong>Links from Video:</strong></p> <ul> <li><a href="http://dabblet.com/">Dabblet</a></li> <li> <a href="https://developer.mozilla.org/en/CSS/position">Position</a> (on MDN)</li> </ul>…