引导程序,表剥离的类,仅用于指定的列

时间:2018-12-07 13:03:14

标签: bootstrap-table

我只想对我的3个列应用表剥离的类。我总共有5个专栏,但其中3个需要删除。有什么想法吗?

例如,我只希望将剥离后的表格应用于以下选定区域:

Example image

1 个答案:

答案 0 :(得分:1)

您可以使用style="background-color: white;"覆盖第一个td元素

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<table class="table table-condensed table-striped">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td style="background-color: white;">John</td>
        <td>Doe</td>
        <td>john@example.com</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>mary@example.com</td>
      </tr>
      <tr>
        <td style="background-color: white;">July</td>
        <td>Dooley</td>
        <td>july@example.com</td>
      </tr>
    </tbody>
  </table>
</div>