Hi Guys,
I want to change the text color of an anchor link that sits in a table cell on a hover. However, the change I wrote in my CSS file to accomplish this, doesn't seem to work. Could someone suggest what I might be doing incorrectly?
This is what I have in my CSS file:
td:hover {
text-align: center;
background:white;
a:active { color:red; }
}
Thanks!