響應表

你必須使用 .table-responsive 類將任何 .table 包裝在 html 容器中以建立響應表:

<div class="table-responsive">
  <table class="table">
    <thead><tr><th>First Name</th><th>Last name</th></tr></thead>
    <tbody>
      <tr><td>John</td><td>Doe</td></tr>
      <tr><td>Fred</td><td>Bloggs</td></tr>
    </tbody>
  </table>
</div>

響應表將在小型裝置上水平滾動(<768px)。大於 768px 寬的螢幕沒有差異。