table {
background-color: transparent;
border-spacing: 0;
border-collapse: collapse;
}
<table>
<caption>Optional table caption.</caption>
<thead><tr> <th>#</th> <th>First Name</th> <th>Last Name</th> <th>Username</th></tr>
</thead>
<tbody><tr> <th scope="row">1</th> <td>Mark</td> <td>Otto</td> <td>@mdo</td></tr><tr> <th scope="row">2</th> <td>Jacob</td> <td>Thornton</td> <td>@fat</td></tr><tr> <th scope="row">3</th> <td>Larry</td> <td>the Bird</td> <td>@twitter</td></tr>
</tbody></table>
<table class="table">
...</table>
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-hover クラスを追加して、 & lt; tBody & gt; がマウス ホバー ステータスに応答できるようにします。 。 table-condensed クラスを使用すると、テーブルをよりコンパクトにすることができ、セル内のパディングが半分になります。要素を使用して、水平方向にスクロールする小さな画面デバイス ( 768px 未満) で見栄えのする応答性の高いテーブルを作成します。画面の幅が 768 ピクセルより大きい場合、水平スクロールバーが表示されなくなります
以上がBoostrap を使用してテーブル インスタンスを作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。