Visibility
The following utility classes control the visibility of elements:
.visibility-visible
.visibility-visible
Sets the visibility property to visible, making the element visible.
CSS equivalent: visibility: visible;
Example usage:
.visibility-hidden
.visibility-hidden
Sets the visibility property to hidden, hiding the element while still occupying its space.
CSS equivalent: visibility: hidden;
Example usage:
.visibility-collapse
.visibility-collapse
Sets the visibility property to collapse, hiding the element and collapsing the space it occupies.
CSS equivalent: visibility: collapse;
Example usage:
These utility classes provide a convenient way to control the visibility of elements, allowing you to show or hide content as needed.
Last updated