I have a question about targeting a specific row in a table and changing the font color. For example, if I want to change the font color of the first row in a table, I can use the following code:
.mytable tr:first th {
color: red
}
But how can I add a hover property to the same row? Would this code work?
.mytable tr:first:hover th {
color: green
}