Bootstrap html table 添加了很多东西

Boostrap html table with a lot of added things

抱歉提出愚蠢的问题,但我一直在尝试在 html 中制作 table 将:

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

Bootstrap 提供可悬停行 table。查看 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>