Getting StartedStyleguide
Content
Layout
Forms
Components
Utilities
Display
CSS has display
rule classes
As such, the classes are named using the format:
display-{value} for xs
display-{breakpoint}-{value} for sm, md, lg, xl, and xxl.
Where value is one of:
noneinlineinline-blockblockgridtabletable-celltable-rowflexinline-flex
Examples
I`m a flex paragraph
<p className="display-flex">...</p>
I`m a grid paragraph only when it is smaller than sm breakpoint
<p className="display-sm-flex">...</p>
Visibility Hidden Force
Apply a visibility: hidden !important;
rule to an element to visually hide it but keep it accessible to screen readers.
<p className="visibility-hidden-force">...</p>