Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/the-details-element/details-pseudo-elements-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>Details pseudo-elements</title>
<link rel="match" href="details-pseudo-elements-001-ref.html">
<style>
details::details-content {
background: aqua;
display: block; /* override display: contents for slot */
}
</style>
<details open>
<summary>The summary</summary>
<div>The details!</div>
</details>