Your best bet is to use
table.YourClass tr:hover td {
background-color: #FEFEFE;
}
Rows aren’t fully support for background color but cells are, using the combination of :hover and the child element will yield the results you need.
Your best bet is to use
table.YourClass tr:hover td {
background-color: #FEFEFE;
}
Rows aren’t fully support for background color but cells are, using the combination of :hover and the child element will yield the results you need.