Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Compose common styling from utility classes without custom CSS for every detail.
Spacing, Display & Flex Utilities is easiest to learn by reading the example, changing it, and observing the result.
<div class="container py-4">
<div class="row g-3">
<div class="col-md-6">
<div class="card shadow-sm">
<div class="card-body">
<h2 class="h4 card-title">Bootstrap card</h2>
<p class="card-text">Responsive, accessible components out of the box.</p>
<button class="btn btn-primary">Start</button>
</div>
</div>
</div>
</div>
</div>Practice the Spacing, Display & Flex Utilities example in a small scratch file, then explain what changed and why.