Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Toggle visibility of content panels.
Collapse is easiest to learn by reading the example, changing it, and observing the result.
<button class="btn btn-outline-primary" type="button"
data-bs-toggle="collapse" data-bs-target="#details"
aria-expanded="false" aria-controls="details">
Toggle details
</button>
<div class="collapse mt-2" id="details">
<div class="card card-body">Hidden content revealed on toggle.</div>
</div>Practice the Collapse example in a small scratch file, then explain what changed and why.