table cell AND text rollover

Hey all. I need to figure out how to create a rollover for a table cell AND change the rollover cvolor of text.

tr:hover
{
background-color:#ffffff;
}

i need the text in the table row to change to red as the background changes to white on rollover. LIKE THIS:


tr:hover
{
background-color:#ffffff;
a {color:#cc0000;}
}Like this?tr a{
display:block;
}

tr a:hover{
background-color:#fff;
color:#c00;
}
 
Back
Top