Visibility
Apply visibility properties of an element
Classes
| Class | Properties |
|---|---|
| .visible | visibility: visible; |
| .hidden | visibility: hidden; |
| .visually-hidden | border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; |
.visible
Sets the visibility property to visible.
xxxxxxxxxx1
<div class="p-4 bg-gray-1">2
<div class="p-4 bg-gray-2"></div>3
<div class="visible p-4 bg-gray-3"></div>4
<div class="p-4 bg-gray-2"></div>5
</div>