2

我正在使用以下 css 突出显示我的数据行

tr:hover{
background-color:grey;
}

但这也突出显示了表格标题。

我试过了

.notfirst:hover{
background-color:grey;
}

但这会阻止任何突出显示。有一个简单的css修复吗?

4

2 回答 2

3

使用这个 CSS:

tr:hover:not(:first-child) {
background-color:grey;
}
于 2013-07-16T07:18:57.007 回答
0

尝试这个

tr:not(:first-child):hover {
    //styles here
}
于 2013-07-16T07:20:56.237 回答