a:hover on visited links

liunx

Guest
a:hover stops working once I have visited the location it aims to, how can I fix that?

a:hover
{
color: lightblue;
}

a:link
{
color: black; font:8pt/8pt verdana, sans-serif; line-height: 14px; text-decoration:none;
}

a:visited
{
color: black; font:8pt/8pt verdana, sans-serif; line-height: 14px; text-decoration:none;
}

a:active
{
color: darkblue;
}The correct order is:
a:link
{
color: black; font:8pt/8pt verdana, sans-serif; line-height: 14px; text-decoration:none;
}

a:visited
{
color: black; font:8pt/8pt verdana, sans-serif; line-height: 14px; text-decoration:none;
}

a:hover
{
color: lightblue;
}

a:active
{
color: darkblue;
}
Do you want the a:hover the same as a:visited?Changing the order did it for me.
Thanks FangChanging the order did it for me.Yes, easy way to remember:
LoVe HAte
 
Back
Top