Copy HTML
<div class="open-demo">
<details open>
<summary>Open details</summary>
<p>This block has the open attribute.</p>
</details>
<details>
<summary>Closed details</summary>
<p>This block only matches :open when it is opened.</p>
</details>
<dialog open>
Open dialog with the open attribute.
</dialog>
<label>
Select
<select>
<option>CSS :open</option>
<option>details</option>
<option>dialog</option>
</select>
</label>
<label>
Input date
<input type="date" />
</label>
<label>
Input color
<input type="color" value="#2f8f6b" />
</label>
</div>