2017-03-05 20:03:05 +01:00
---
layout: docs
title: Visibility
2017-05-28 20:25:59 +02:00
description: Control the visibility, without modifying the display, of elements with visibility utilities.
2017-03-05 20:03:05 +01:00
group: utilities
---
2018-07-02 20:52:28 +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. Content will be hidden both visually and for assistive technology/screen reader users.
2017-03-05 20:03:05 +01:00
Apply `.visible` or `.invisible` as needed.
2019-01-08 17:33:28 +01:00
{{< highlight html > }}
2017-03-05 20:03:05 +01:00
< div class = "visible" > ...< / div >
< div class = "invisible" > ...< / div >
2019-01-08 17:33:28 +01:00
{{< / highlight > }}
2017-03-05 20:03:05 +01:00
2019-01-08 17:33:28 +01:00
{{< highlight 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
}
2019-01-08 17:33:28 +01:00
{{< / highlight > }}