Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Make wide tables scroll horizontally on small screens.
Responsive Tables is easiest to learn by reading the example, changing it, and observing the result.
<div class="table-responsive">
<table class="table table-striped table-hover align-middle">
<thead>
<tr><th scope="col">Lesson</th><th scope="col">Level</th><th scope="col">Min</th></tr>
</thead>
<tbody>
<tr><th scope="row">Grid</th><td>Beginner</td><td>30</td></tr>
<tr><th scope="row">Forms</th><td>Beginner</td><td>40</td></tr>
</tbody>
</table>
</div>Practice the Responsive Tables example in a small scratch file, then explain what changed and why.