2017-03-05 19:03:05 +00:00
---
layout: docs
title: Visibility
2017-05-28 18:25:59 +00:00
description: Control the visibility, without modifying the display, of elements with visibility utilities.
2017-03-05 19:03:05 +00:00
group: utilities
---
2018-07-02 18:52:28 +00: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 19:03:05 +00:00
Apply `.visible` or `.invisible` as needed.
2019-01-08 16:33:28 +00:00
{{< highlight html > }}
2017-03-05 19:03:05 +00:00
< div class = "visible" > ...< / div >
< div class = "invisible" > ...< / div >
2019-01-08 16:33:28 +00:00
{{< / highlight > }}
2017-03-05 19:03:05 +00:00
2019-01-08 16:33:28 +00:00
{{< highlight scss > }}
2017-03-05 19:03:05 +00:00
// Class
.visible {
2019-02-07 17:19:00 +00:00
visibility: visible !important;
2017-03-05 19:03:05 +00:00
}
.invisible {
2019-02-07 17:19:00 +00:00
visibility: hidden !important;
2017-03-05 19:03:05 +00:00
}
2019-01-08 16:33:28 +00:00
{{< / highlight > }}