Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Group related buttons into a single control.
Button Groups is easiest to learn by reading the example, changing it, and observing the result.
<div class="btn-group" role="group" aria-label="Text alignment">
<button type="button" class="btn btn-outline-primary active">Left</button>
<button type="button" class="btn btn-outline-primary">Center</button>
<button type="button" class="btn btn-outline-primary">Right</button>
</div>Practice the Button Groups example in a small scratch file, then explain what changed and why.