Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Show task progress with striped and animated bars.
Progress Bars is easiest to learn by reading the example, changing it, and observing the result.
<div class="progress" role="progressbar" aria-label="Course progress"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 60%">60%</div>
</div>Practice the Progress Bars example in a small scratch file, then explain what changed and why.