13 lines
233 B
HTML
13 lines
233 B
HTML
<!DOCTYPE HTML>
|
|
<title>Details pseudo-elements</title>
|
|
<style>
|
|
|
|
summary { list-style-type: disclosure-closed; }
|
|
div { background: aqua }
|
|
|
|
</style>
|
|
|
|
<details open>
|
|
<summary>The summary</summary>
|
|
<div>The details!</div>
|
|
</details>
|