Getting Started
Core Concepts
Components
Customization
Layout
Helpers
Utilities
The .visible
and .invisible
classes
are used control the visibility of elements, without changing their display
properties. Note that elements with class .invisible
will
still take up the same space within the page.
<div class="visible p-3">
This is visible
</div>
<div class="invisible p-3">
This is invisible
</div>