Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'site/content/docs/5.0/utilities/visibility.md')
-rw-r--r--site/content/docs/5.0/utilities/visibility.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/site/content/docs/5.0/utilities/visibility.md b/site/content/docs/5.0/utilities/visibility.md
new file mode 100644
index 0000000000..870b111454
--- /dev/null
+++ b/site/content/docs/5.0/utilities/visibility.md
@@ -0,0 +1,25 @@
+---
+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 utility classes do not modify the `display` value at all and do not affect layout – `.invisible` elements still take up space in the page. Content will be hidden both visually and for assistive technology/screen reader users.
+
+Apply `.visible` or `.invisible` as needed.
+
+{{< highlight html >}}
+<div class="visible">...</div>
+<div class="invisible">...</div>
+{{< /highlight >}}
+
+{{< highlight scss >}}
+// Class
+.visible {
+ visibility: visible !important;
+}
+.invisible {
+ visibility: hidden !important;
+}
+{{< /highlight >}}