基本表

Bootstrap 使用 .table 类为表定义自定义样式。只需将 .table 类添加到任何 <table>,即可看到水平分隔线和填充:

<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>