Positioning
Use the positioning modifiers to control the CSS display
, float
, and position
properties.
Classes
Modifier | Purpose |
---|---|
display-block | Sets display: block on element |
display-flex | Sets display: flex on element |
display-inline | Sets display: inline on element |
display-inline-block | Sets display: inline-block on element |
display-none | Sets display: none on element |
float-left | Floats content to the left |
float-right | Floats content to the right |
position-absolute | Sets position: absolute on element |
position-fixed | Sets position: fixed on element |
position-relative | Sets position: relative on element |
Imports
Import CSS:
import 'pivotal-ui/css/positioning';