Basic
Any number of items can be open at once.
<div class="flex w-full justify-center">
<div class="w-full max-w-xl rounded-large border border-foreground/10 bg-card px-4">
<x-components.accordion>
<x-components.accordion.item title="Is it accessible?" open>
Yes. Each header is a real button and the panel is fully keyboard reachable.
</x-components.accordion.item>
<x-components.accordion.item title="Is it animated?">
Yes — it animates with a CSS grid trick, so there's no Alpine plugin to install.
</x-components.accordion.item>
<x-components.accordion.item title="Can I customize it?">
Absolutely. Every part is yours to edit once you publish the component.
</x-components.accordion.item>
</x-components.accordion>
</div>
</div>