Boostrap html表中有很多添加的东西

问题描述 投票:-2回答:1

对不起,愚蠢的问题,但我一直在尝试用html制作表格,该表格将:enter image description here

并且悬停敏感==当您将鼠标悬停在行上时,其颜色将会改变。我已经尝试搜索,但是没有什么是我需要的...谢谢您的帮助。

html css html-table bootstrap-4 bootstrap-table
1个回答
1
投票

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>
© www.soinside.com 2019 - 2024. All rights reserved.