Changing link color in a table, using CSS
I have created an html document with a style sheet that alters the
color of an anchor <A> tag on hover (i.e. the link turns white
on mouseover).
This works on all my links on the page, except for the ones that are in
a table. Can anyone explain how I can fix this?
You can insert this code into your style sheet:
TD A:hover {color: white;}
|