If I am targeting a specific row, say the first one in a table, and want to change font color, I can do this
.mytable tr:first th {
color: red
}
But how do I add a hover property to the same row? This won’t work, would it?
.mytable tr:first:hover th {
color: green
}
Can you put just the first row in a thead container?