Position
CSS classes for controlling the element position.
| Class | Styles |
|---|---|
| absolute | position: absolute; |
| absolute-top | position: absolute; top: 0; right: 0; left: 0; |
| absolute-bottom | position: absolute; bottom: 0; right: 0; left: 0; |
| fixed | position: fixed; |
| fixed-top | position: fixed; top: 0; right: 0; left: 0; |
| fixed-bottom | position: fixed; bottom: 0; right: 0; left: 0; |
| relative | position: relative; |
| sticky | position: sticky; |
| sticky-top | position: sticky; top: 0; z-index: 1020; |
| sticky-bottom | position: sticky; bottom: 0; z-index: 1020; |
| float-start | float: left; |
| float-end | float: right; |
| float-none | float: none; |
