Position Use these shorthand utilities for quickly configuring the position of an element.
Positions can also be changed for mobile viewports by adding the following classes,
.position-on-mobile-absolute, .position-on-mobile-relative, and .position-on-mobile-static
Position Fixed
.position-fixed; is positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. The top, right, bottom, and leftproperties are used to position the element
Position Relative
.position-relative, the element is positioned relative to itself. However, an absolute positioned element is relative to its parent. An element with position: absoluteis removed from the normal document flow. ... If it doesn't have any parent elements, then the initial document htmlwill be its parent
.position-absolute
.position-absolute
Position Absolute
.position-absolute; is positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling. You can use .pos-top, .pos-right, .pos-bottom, and .pos-leftto position relavant to its closest relative positioned ancenstor
Position Sticky
Position an element at the top of the viewport, from edge to edge, but only after you scroll past it. The .sticky-toputility uses CSS’s position: sticky, which isn’t fully supported in all browsers.
IE11 and IE10 will render position: stickyas position: relative.As such, we wrap the styles in a @supportsquery, limiting the stickiness to only browsers that can render it properly.
Sticky Element: Scroll Down to See the Effect Scroll down this page to see how sticky positioning works
Some example text..
Scroll back up again to "remove" the sticky position.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus imperdiet, nulla et dictum interdum, nisi lorem egestas odio, vitae scelerisque enim ligula venenatis dolor. Maecenas nisl est, ultrices
1..
...
...
...
4..
...
...
...
8..
...
...
...
12.
...
...
...
16.
...
...
...
20.
...
...
...
24.
Position Static
.position-staticwill generally 'reset' these properties
.position-absolute
