2017-03-05 13:03:05 -06:00
---
layout: docs
title: Visibility
2020-06-21 12:41:01 +01:00
description: Control the visibility of elements, without modifying their display, with visibility utilities.
2017-03-05 13:03:05 -06:00
group: utilities
---
2020-06-21 12:39:49 +01:00
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.
2020-10-12 09:06:06 +03:00
{{% callout warning %}}
2020-06-21 12:39:49 +01:00
Elements with the `.invisible` class will be hidden *both* visually and for assistive technology/screen reader users.
2020-10-12 09:06:06 +03:00
{{% /callout %}}
2017-03-05 13:03:05 -06:00
Apply `.visible` or `.invisible` as needed.
2019-01-08 18:33:28 +02:00
{{< highlight html > }}
2017-03-05 13:03:05 -06:00
< div class = "visible" > ...< / div >
< div class = "invisible" > ...< / div >
2019-01-08 18:33:28 +02:00
{{< / highlight > }}
2017-03-05 13:03:05 -06:00
2019-01-08 18:33:28 +02:00
{{< highlight scss > }}
2017-03-05 13:03:05 -06:00
// Class
.visible {
2019-02-07 18:19:00 +01:00
visibility: visible !important;
2017-03-05 13:03:05 -06:00
}
.invisible {
2019-02-07 18:19:00 +01:00
visibility: hidden !important;
2017-03-05 13:03:05 -06:00
}
2019-01-08 18:33:28 +02:00
{{< / highlight > }}