Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Set background colors, gradients, and opacity.
Background Utilities is easiest to learn by reading the example, changing it, and observing the result.
<div data-bs-theme="dark" class="p-4 bg-body text-body rounded">
<p class="text-primary">Primary text</p>
<p class="text-success">Success text</p>
<div class="bg-warning-subtle text-warning-emphasis p-2 rounded">Subtle warning box</div>
<button class="btn btn-primary">Themed button</button>
</div>Practice the Background Utilities example in a small scratch file, then explain what changed and why.