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:

Example :
none
inline
inline-block
block
grid
table
table-cell
table-row
flex
inline-flex

Examples

I`m a flex paragraph

Example :
<p className="display-flex">
  ...
</p>

I`m a grid paragraph only when it is smaller than sm breakpoint

Example :
<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.

Example :
<p className="visibility-hidden-force">
  ...
</p>

results matching ""

    No results matching ""