2017-03-05 13:03:05 -06:00
---
layout: docs
title: Visibility
2017-05-28 11:25:59 -07:00
description: Control the visibility, without modifying the display, of elements with visibility utilities.
2017-03-05 13:03:05 -06:00
group: utilities
---
2018-07-02 19:52:28 +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. Content will be hidden both visually and for assistive technology/screen reader users.
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 > }}