diff options
| author | XhmikosR <[email protected]> | 2021-01-19 18:16:38 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-19 18:16:38 +0200 |
| commit | 6ffb0b48e455430f8a5359ed689ad64c1143fac2 (patch) | |
| tree | 6262338881c32c3c19e4977152ecd0fca61a341c /site/content/docs/4.6/utilities/visibility.md | |
| parent | 9d87bd7a30c1874a9c3d60041a4042228753dd0e (diff) | |
| download | bootstrap-4.6.0.tar.xz bootstrap-4.6.0.zip | |
Release v4.6.0. (#32726)v4.6.0
* Bump version to v4.6.0.
* Dist
Diffstat (limited to 'site/content/docs/4.6/utilities/visibility.md')
| -rw-r--r-- | site/content/docs/4.6/utilities/visibility.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/site/content/docs/4.6/utilities/visibility.md b/site/content/docs/4.6/utilities/visibility.md new file mode 100644 index 000000000..68f8508fd --- /dev/null +++ b/site/content/docs/4.6/utilities/visibility.md @@ -0,0 +1,34 @@ +--- +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. + +```html +<div class="visible">...</div> +<div class="invisible">...</div> +``` + +```scss +// 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); +} +``` |
