Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Display series of content as styled, interactive lists.
List Groups is easiest to learn by reading the example, changing it, and observing the result.
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
Routing <span class="badge text-bg-primary rounded-pill">Done</span>
</li>
<li class="list-group-item active" aria-current="true">Middleware</li>
<li class="list-group-item disabled">Deployment</li>
</ul>Practice the List Groups example in a small scratch file, then explain what changed and why.