微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

html – 用于选定行的hover禁用引导表

我正在使用bootstrap来为我的表行设置on-hover效果.但是我想在选择表格行时删除悬停效果.我选择一行时使用 JavaScript设置一个类(select-row).似乎不适合我.我正在使用CSS中的not子句.

我的css:

.table-hover > tbody > tr:not(.select-row):hover > td,.table-hover > tbody > tr:not(.select-row):hover > th {
    background-color: #f5fafe;
    color: black;
}

tr.select-row {
    background-color: #bddef9;
}

HTML:

<table class="table table-condensed table-hover">
   <tr>
       <td>xxx</td>
       <td>xxx</td>
   </tr>
</table>

解决方法

为了不更改选定的行背景,您需要专门覆盖现有的悬停样式.

Bootstrap在hover而不是tr上定位td背景.

这有效:

.table-hover > tbody > tr.select-row:hover > td,.select-row > td {
    background-color: #bddef9;
}

Demo Fiddle

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐