Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Add small count and label badges to elements.
Badges is easiest to learn by reading the example, changing it, and observing the result.
<h4>Inbox <span class="badge text-bg-secondary">4</span></h4>
<button type="button" class="btn btn-primary position-relative">
Notifications
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger">
9+
<span class="visually-hidden">unread messages</span>
</span>
</button>Practice the Badges example in a small scratch file, then explain what changed and why.