← Back tothis vs that

display: none vs opacity: 0 vs visibility: hidden

Written byPhuoc Nguyen
Category
CSS
Created
24 May, 2020
Last updated
20 Apr, 2021
Contributors
BabkinAleksandr
woochul2
There are three common CSS properties to make an element invisible:
  • `display: none`
  • `opacity: 0`
  • `visibility: hidden`

Differences

  1. `display: none` doesn't take space when the element is rendered. The other ways still take the space normally.
  2. The browser will not response to any events of element which uses either `display: none` or `visibility: hidden`. The `visibility: hidden` style behaves like a combination of `opacity: 0` and `pointer-events: none`.
  3. Regarding the accessibility, `opacity: 0` is the only property which makes the element accessible in the tab order, and the element's content can be read by screen readers.
  4. Applying `display: none` or `opacity: 0` will effect on child elements. `visibility: hidden`, on the other hand, doesn't change the visibility of any children.
  5. It's worth noting that if you want to measure the size of element, then you can't use `display: none` at all.
As mentioned in the first difference, an element with `display: none` doesn't take any space on the page. Hence, all properties related to the element size, such as `clientHeight`, `clientWidth`, `height`, `offsetHeight`, `offsetWidth`, `scrollHeight`, `scrollWidth` and `width` are zero.
All properties returned by the `getBoundingClientRect()` method are zero as well.
Similarly, an element with `visibility: hidden` will have empty inner text (equivalent with the `innerText` property).

Tip

With Chrome DevTools, you can hide any element in the page by right clicking the element, and then click Hide element.
Hide element with Chrome DevTools
Hide element with Chrome DevTools
In order to do that without breaking the layout, Chrome adds a CSS class named `__web-inspector-hide-shortcut__` to the element:
.__web-inspector-hide-shortcut__ {
visibility: hidden !important;
}
As mentioned above, applying the visibility style to an element doesn't effect on any children, so Chrome adds a following style to make all children invisible:
.__web-inspector-hide-shortcut__ * {
visibility: hidden !important;
}

Good to know

Nowadays, it's very easy for us to set the opacity for given element and its children with a single line of CSS:
.overlay {
opacity: 0.75;
}
Many years ago, when the web developers have to deal with the old browsers such as Internet Explorer 6, 7, 8, here is what we have to do in order to support various browsers:
.overlay {
/* For IE 5, 6, 7 */
filter: alpha(opacity=75);

/* For IE 8 */
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=75)';

/* For Netscape */
-moz-opacity: 0.75;

/* For Safari 1.x */
-khtml-opacity: 0.75;

/* Our good friends */
opacity: 0.75;
}

Questions? 🙋

Do you have any questions? Not just about this specific post, but about any topic in front-end development that you'd like to learn more about? If so, feel free to send me a message on Twitter or send me an email. You can find them at the bottom of this page.
I have a long list of upcoming posts, but your questions or ideas for the next one will be my top priority. Let's learn together! Sharing knowledge is the best way to grow 🥷.

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn