Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Show contextual feedback messages that can dismiss.
Alerts is easiest to learn by reading the example, changing it, and observing the result.
<div class="alert alert-success alert-dismissible fade show" role="alert">
Lesson completed successfully.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<div class="alert alert-warning" role="alert">Your trial ends soon.</div>
<div class="alert alert-danger" role="alert">Something went wrong.</div>Practice the Alerts example in a small scratch file, then explain what changed and why.