Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Create branded button variants.
Custom Button Styles is easiest to learn by reading the example, changing it, and observing the result.
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-success btn-lg">Large</button>
<button type="button" class="btn btn-danger btn-sm">Small</button>
<button type="button" class="btn btn-primary" disabled>Disabled</button>Practice the Custom Button Styles example in a small scratch file, then explain what changed and why.