Sha256: d622204f49e620f2374301fec75545621b1bd517c2b2c05f3b628db5a57d0ad8
Contents?: true
Size: 751 Bytes
Versions: 52
Compression:
Stored size: 751 Bytes
Contents
--- layout: docs title: Visibility description: Control the visibility, without modifying the display, of elements with visibility utilities. group: utilities --- Set the `visibility` of elements with our visibility utilities. These do not modify the `display` value at all and are helpful for hiding content from most users, but still keeping them for screen readers. Apply `.visible` or `.invisible` as needed. {% highlight html %} <div class="visible">...</div> <div class="invisible">...</div> {% endhighlight %} {% highlight scss %} // Class .visible { visibility: visible; } .invisible { visibility: hidden; } // Usage as a mixin .element { @include invisible(visible); } .element { @include invisible(hidden); } {% endhighlight %}
Version data entries
52 entries across 52 versions & 2 rubygems