我正在使用以下css来突出显示我的数据行
tr:hover{
background-color:grey;
}
但这也突出了表格标题。
我试过
.notfirst:hover{
background-color:grey;
}
但是这可以防止任何突出显示。有一个简单的CSS修复吗?
答案 0 :(得分:3)
使用此CSS:
tr:hover:not(:first-child) {
background-color:grey;
}
答案 1 :(得分:0)
试试这个
tr:not(:first-child):hover {
//styles here
}