【发布时间】:2021-10-08 20:47:18
【问题描述】:
我只想删除这个<th></th> 悬停元素。我正在使用引导表类表悬停并且工作正常,但我想要的只是删除表标题中的悬停。我尝试了很多这样的css。我正在使用 Bootstrap v3.3.7 (http://getbootstrap.com)
.table th:hover {
background-color: none !important;
}
还有这个
.table tbody tr:hover th {
background-color: transparent;
}
等等
.table tbody tr:hover th {
background-color: transparent;
}
【问题讨论】:
-
比你的回答先生。请阅读我的问题。我只想禁用表头中的悬停
-
只是备注:th 是 thead tr 的 childdren 而不是 tbody ;)
标签: html css twitter-bootstrap