Twitter Bootstrap remove table row highlight with row stripes

后端 未结 2 1797
执念已碎
执念已碎 2020-12-31 05:31

Is there a simple way to remove the tr:hover style from twitter bootstrap such that I can still use their table styling without getting the row highlight on hover?

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-31 06:30

    Override these rules:

    .table tbody tr:hover td,
    .table tbody tr:hover th {
      background-color: #f5f5f5;
    }
    

    Using this:

    .table tbody tr:hover td,
    .table tbody tr:hover th {
      background-color: transparent;
    }
    

提交回复
热议问题