details-pseudo-elements-002-ref.html (233B)
1 <!DOCTYPE HTML> 2 <title>Details pseudo-elements</title> 3 <style> 4 5 summary { list-style-type: disclosure-closed; } 6 div { background: aqua } 7 8 </style> 9 10 <details open> 11 <summary>The summary</summary> 12 <div>The details!</div> 13 </details>