in English
Hmuh theih a ni
Visibility utilities nei elements te visibility control la, display siam danglam lovin.
visibility
Kan visibility utilities hmangin of elements te chu set rawh . Heng utility class te hian display
value an siam danglam lo tak zet a, layout pawh an nghawng lo – .invisible
elements te hian page chhungah hmun an la la reng a ni. Content hi hmuh theiha thup a ni ang a, assistive technology/screen reader hmangtute tan pawh thup a ni ang.
Apply .visible
emaw .invisible
a tul angin emaw dil rawh.
<div class="visible">...</div>
<div class="invisible">...</div>
// Class
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
// Usage as a mixin
// Warning: The `invisible()` mixin has been deprecated as of v4.3.0. It will be removed entirely in v5.
.element {
@include invisible(visible);
}
.element {
@include invisible(hidden);
}