Position
Position
Position Utilities set the position
property. These utilities don't have any breakpoint classes.
Utility | Value |
---|---|
position-static | static |
position-relative | relative |
position-absolute | absolute |
position-fixed | fixed |
position-sticky | sticky |
Fixed
Fixed Utilities sets an element at the top or bottom of the window. These utilities don't have any breakpoint classes.
Utility | Value |
---|---|
fixed-top | left:0; position:fixed; right:0; top:0; z-index:1030; |
fixed-bottom | bottom:0; left:0; position:fixed; right:0; z-index:1030; |
Sticky Top
Sticky Top sets an element at the top of the window after you scroll past it. This utility doesn't have any breakpoint classes.
Utility | Value |
---|---|
sticky-top | position:sticky; top:0; z-index:1020; |