Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Build expandable, single-open content sections.
Accordion is easiest to learn by reading the example, changing it, and observing the result.
<div class="accordion" id="faq">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button"
data-bs-toggle="collapse" data-bs-target="#q1"
aria-expanded="true" aria-controls="q1">
What is Bootstrap?
</button>
</h2>
<div id="q1" class="accordion-collapse collapse show" data-bs-parent="#faq">
<div class="accordion-body">A CSS and JS toolkit for responsive UI.</div>
</div>
</div>
</div>Practice the Accordion example in a small scratch file, then explain what changed and why.