These keywords define whether an element generates display boxes at all.
These keywords define whether an element generates display boxes at all.
Valid <display-box>
values:
contents
These elements don't produce a specific box by themselves. They are replaced by their pseudo-box and their child boxes. Please note that the CSS Display Level 3 spec defines how the contents
value should affect "unusual elements" — elements that aren't rendered purely by CSS box concepts such as replaced elements. See Appendix B: Effects of display: contents on Unusual Elements for more details.
Due to a bug in browsers this will currently remove the element from the accessibility tree — screen readers will not look at what's inside. See the Accessibility concerns section below for more details.
none
Turns off the display of an element so that it has no effect on layout (the document is rendered as though the element did not exist). All descendant elements also have their display turned off. To have an element take up the space that it would normally take, but without actually rendering anything, use the visibility
property instead.
Current implementations in most browsers will remove from the accessibility tree any element with a display
value of contents
. This will cause the element — and in some browser versions, its descendant elements — to no longer be announced by screen reading technology. This is incorrect behavior according to the CSSWG specification.
<display-box> =
contents |
none
In this first example, the paragraph with a class of secret is set to display: none
; the box and any content is now not rendered.
<p>Visible text</p> <p class="secret">Invisible text</p>
p.secret { display: none; }
In this example the outer <div>
has a 2-pixel red border and a width of 300px. However it also has display: contents
specified therefore this <div>
will not be rendered, the border and width will no longer apply, and the child element will be displayed as if the parent had never existed.
<div class="outer"> <div>Inner div.</div> </div>
.outer { border: 2px solid red; width: 300px; display: contents; } .outer > div { border: 1px solid green; }
No specification data found for css.properties.display.contents
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
display-box |
65 | 79 | 37 | No | 52 | 11.1 | 65 | 65 | 37 | 47 | 11.3 | 9.0 |
contents_unusual |
65 | 79 | 59 | No | 52 | No | 65 | 65 | 59 | 47 | No | 9.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/display-box