Responsive Tables
Bootstrap includes styling for tables and utilities for responsiveness.
Basic Table
<table class="table">
<thead>
<tr><th>#</th><th>Name</th></tr>
</thead>
<tbody>
<tr><td>1</td><td>Alice</td></tr>
</tbody>
</table>
Responsive Wrapper
<div class="table-responsive">
<table class="table">...</table>
</div>