Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Indicate loading with border and grow spinners.
Spinners is easiest to learn by reading the example, changing it, and observing the result.
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<button class="btn btn-primary" type="button" disabled>
<span class="spinner-border spinner-border-sm" aria-hidden="true"></span>
<span role="status">Loading...</span>
</button>Practice the Spinners example in a small scratch file, then explain what changed and why.