Utilities › Visibility
Visibility
Utilize our visibility utilities to control element visibility. These classes maintain the original display value and layout, ensuring that .invisible
elements remain in the page layout while being hidden.
# Making elements invisible
Use .invisible
to hide an element, but still maintain its place in the DOM.
01
02
03
# Collapsing elements
Collapsing elements refers to the behavior where an element takes up zero height or width, essentially becoming invisible or hidden. This can happen through .collapse
# Making elements visible
Use .visible
for undoing the invisible utility elements
01
02
03