Browse documentation
On this page
Accordion
The native <details>/<summary> pair is styled as a collapsible accordion
item, with no JavaScript and no ARIA widget required.
Accordion item 1
Content for the first item, revealed when the accordion is open.
Accordion item 2 (open by default)
Content for the second item.
Show HTML
<details>
<summary>Accordion item 1</summary>
<p>Content for the first item, revealed when the accordion is open.</p>
</details>
<details open>
<summary>Accordion item 2 (open by default)</summary>
<p>Content for the second item.</p>
</details>
<details>
<summary>Accordion item 1</summary>
<p>Content for the first item.</p>
</details>
<details open>
<summary>Accordion item 2 (open by default)</summary>
<p>Content for the second item.</p>
</details>
One at a time #
Give a group of details the same name and the browser makes them
mutually exclusive: opening one closes the others. No JavaScript, no
aria-expanded bookkeeping — the state lives in the elements, and the
accessibility tree follows it for free.
Standard delivery
Three to five working days, tracked, no signature required.
Express delivery
Next working day if ordered before 14:00.
Collect in store
Ready within two hours at any branch.
Show HTML
<details name="shipping" open>
<summary>Standard delivery</summary>
<p>Three to five working days, tracked, no signature required.</p>
</details>
<details name="shipping">
<summary>Express delivery</summary>
<p>Next working day if ordered before 14:00.</p>
</details>
<details name="shipping">
<summary>Collect in store</summary>
<p>Ready within two hours at any branch.</p>
</details>
<details name="shipping" open>
<summary>Standard delivery</summary>
<p>Three to five working days.</p>
</details>
<details name="shipping">
<summary>Express delivery</summary>
<p>Next working day if ordered before 14:00.</p>
</details>
Two things worth knowing before reaching for it: if several members of a
group carry open, only the first stays open, and an exclusive accordion
means a reader cannot compare two answers side by side. Use it when the
options are alternatives, not when they are a checklist.
Behavior #
- The default disclosure triangle/marker is removed and replaced with a
chevron icon (
--cirth-icon-chevron) that rotates 180° when open. summarycolor:--cirth-accordion-close-summary-colorwhen closed,--cirth-accordion-open-summary-colorwhen open (and not focused),--cirth-accordion-active-summary-coloron hover/focus.- The single divider belongs to the
detailsitem, not tosummary: when open it follows the revealed content instead of separating that content from its trigger. summary[role="button"](adetailsused as an accordion triggered by a button) becomes full width, aligned left, with its own marker sizing.- Grouping with
nameneeds nothing from Cirth: the styling is per item, so exclusivity is the browser's business and works with everything on this page.
details.dropdown is a related but distinct pattern; see
Dropdown.