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
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>
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>