簡單的表

雖然樣式效果可能因主題而異,但 .table 類用於為應用程式中的表建立統一且一致的外觀:

<table class="table">
    <tr>
        <th>Season</th>
        <th>Doctor</th>
        <th>Companion</th>
    </tr>
    <tr>
        <td>1</td>
        <td>Christopher Eccleston</td>
        <td>Rose Tyler</td>
    </tr>
</table>