]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/invisible-content.md
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / docs / utilities / invisible-content.md
CommitLineData
91e44d91
S
1---
2layout: docs
3title: Invisible content
4group: utilities
5---
6
7The `.invisible` class can be used to toggle only the visibility of an element, meaning its `display` is not modified and the element can still affect the flow of the document.
8
9{% highlight html %}
10<div class="invisible">...</div>
11{% endhighlight %}
12
13{% highlight scss %}
14// Class
15.invisible {
16 visibility: hidden;
17}
18
19// Usage as a mixin
20.element {
21 @include invisible;
22}
23{% endhighlight %}