I just discovered a strange CSS3 transition problem with a:hover and a:visited in Google Chrome. (demo) The link should have an orange background and after having been visited it should be blue. When you hover over, the link should grow wider. However, when you hover over after visiting, the link changes to orange during the transition and then back to blue. I want it to stay blue during the transition, because, well, the link is still :visited, right?
Any help, suggestions, or anything gladly appreciated! (No jQuery, please - CSS only)

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Adding this code:

a:visited a:hover{
  width: 17em;
  background: #B2CDE0;
}

results (at least in Chromium) that the background color at the end of the effect is blue, but not during the ease-out. seems like a webkit bug to me

link|improve this answer
Interesting. Anyone else have anything to say on this? – Abraham Aug 10 '11 at 13:49
feedback

This is related to privacy, for example Firefox won't support transitions for them: https://developer.mozilla.org/en/CSS/Privacy_and_the_:visited_selector

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.