HI all, I have a question about changing the colour of visited link with a:visited{}
: it doestn' seem to work the way I thought it would, or, more likely I am doing something wrong.
I have this situation:
.box1 a:link{
color:#ac2973;
text-decoration:none;
}
.box1 a:visited{
color:#6bb8c0;
}
.box1 a:hover{
color:black;
}
But I have more than 1 link in the div. Now, when I click on one of the link, all of them - even those on other divs - change the colour to be #6bb8c0
even if I haven't visited them. Is this normal?
thanks