Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Combine grid and utilities for mobile-first pages.
Responsive Design Patterns is easiest to learn by reading the example, changing it, and observing the result.
<section class="py-5 bg-body-tertiary">
<div class="container text-center">
<h1 class="display-5 fw-bold">Learn Bootstrap fast</h1>
<p class="lead col-lg-6 mx-auto">Build responsive pages with the grid, components, and utilities.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button class="btn btn-primary btn-lg px-4">Get started</button>
<button class="btn btn-outline-secondary btn-lg px-4">Docs</button>
</div>
</div>
</section>Practice the Responsive Design Patterns example in a small scratch file, then explain what changed and why.