CSS 表头不设置hover,tr:hover覆盖td的背景色


如果td有背景色 tr:hover覆盖td的背景色
tr:hover td{
background: #B6E8Ea ;
}
=================== ====================================== ================================= ============
tr:hover会hover到表头,可以这样设置表第一行的背景色,使用hover影响不到第一行
tr:nth-of-type(1):hover td{
background: #f0f0f0;
}