This is driving me nuts because it HAS to be something simple! The a:hover should change the color to red when you hover over the text. It works when the color of the text is black (default), but not when the color of the text is blue (declared below).
Help!
css...
<style>
#color {
color: blue;
}
#color a:hover {
color: red:
}
</style>
html...
<div id="color"><a href="test.htm">This should turn red when you hover over it</a></div>
Help!
css...
<style>
#color {
color: blue;
}
#color a:hover {
color: red:
}
</style>
html...
<div id="color"><a href="test.htm">This should turn red when you hover over it</a></div>