The HTML <details>
element is used as a disclosure widget from which the user can retrieve additional information.
Content categories | Flow content, sectioning root, interactive content, palpable content. |
---|---|
Permitted content | One <summary> element followed by flow content. |
Tag omission | None, both the starting and ending tag are mandatory. |
Permitted parents | Any element that accepts flow content. |
Permitted ARIA roles | None |
DOM interface | HTMLDetailsElement |
This element includes the global attributes.
open
false
and so details will be hidden.<details> <summary>Some details</summary> <p>More info about the details.</p> </details>
Note: If the live sample above doesn't work for you, see Browser compatibility to determine if your browser supports the feature at all.
Following the more recent spec, Firefox makes the summary element display: list-item
and the marker can be styled the same way list items can be styled. Following an older spec, Chrome and Safari have a custom ::-webkit-details-marker
pseudo element which can be styled.
For cross browser compatible styling hide Firefox's marker by setting summary { display: block }
and Chrome and Safari's marker by setting ::-webkit-details-marker {display: none;}
. Styling can then be applied in a way appropriate to the necessary styles. The example below uses CSS generated content to add the marker back.
<details> <summary>Some details</summary> <p>More info about the details.</p> </details>
summary { display: block; } summary::-webkit-details-marker { display: none; } summary::before { content: '\25B6'; padding-right: 1em; } details[open] > summary::before { content: '\25BC'; }
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of '<details>' in that specification. | Living Standard | |
HTML5.1 The definition of '<details>' in that specification. | Recommendation | Initial definition |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | MS Edge | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 12 | 49.0 (49.0)[1] | No support | Under consideration | 15 | 6 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 4.0 | 49.0 (49.0)[1] | No support | No support | No support |
[1] This feature is available since Firefox 47 behind the preference dom.details_element.enabled
, defaulting to false
, except on Nightly and Aurora versions (bug 1241750). Support for it is enabled by default, i.e. the preference is defaulting to true
, since Firefox 49.0 (bug 1226455).
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details