【发布时间】:2020-09-02 12:15:38
【问题描述】:
【问题讨论】:
-
请浏览 bs4 表。请使用 w3schools 的此链接作为参考。 w3schools.com/bootstrap4/bootstrap_tables.asp
-
好的,我去看看。
标签: html css html-table bootstrap-4 bootstrap-table
【问题讨论】:
标签: html css html-table bootstrap-4 bootstrap-table
Bootstrap 提供了一个可悬停的行表。查看Bootstrap table documentation。
这是他们在文档中显示的示例代码:
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</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 colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
【讨论】: