Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE HTML>
<title>Details pseudo-elements</title>
<!-- This test is (at time of writing) _EXTREMELY_ tentative. -->
<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>