Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Show lightweight, auto-dismissing notifications.
Toasts is easiest to learn by reading the example, changing it, and observing the result.
<div class="toast-container position-fixed bottom-0 end-0 p-3">
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto">Saved</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">Your changes were saved.</div>
</div>
</div>Practice the Toasts example in a small scratch file, then explain what changed and why.