ネイティブ詳細
JavaScriptを使わない標準アコーディオン
プレビュー
HTML
<details name="design-notes">
<summary>Design notes</summary>
<p>Native disclosure keeps the interaction accessible and predictable.</p>
</details>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
details {
min-width: min(100%, 22rem);
padding: 1rem 1.1rem;
border: 1px solid var(--line);
border-radius: 1rem;
background: var(--paper);
color: var(--ink);
}
summary {
cursor: pointer;
font-weight: 700;
}
details[open] summary {
margin-block-end: 0.75rem;
}