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