HTML details playground

Explore details with controls to edit each summary and content, add new blocks, and test the name attribute for JavaScript-free exclusive accordions.

Ask AI

HTML details playground

Response generated with openai/gpt-5.4-nano. AI can make mistakes. Always review the result.
First details

The details element can show or hide additional content natively.

Second details

The summary element defines the visible text that toggles each disclosure block.

HTML
<details dir="ltr">
  <summary>First details</summary>
  <p>The details element can show or hide additional content natively.</p>
</details>

<details dir="ltr">
  <summary>Second details</summary>
  <p>The summary element defines the visible text that toggles each disclosure block.</p>
</details>