Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I define a color for :visited it seems to go back to the parent's color first before applying the color for the :hover style:

body {
    color:black;
}
a {
    color:inherit;
    -webkit-transition:ease 3s;
}
a:visited {
    color:pink;
}
a:hover, a:visited:hover {
    color:yellow;
}​

JsFiddle

Is there a hack/fix for this?

share|improve this question
I can't replicate the issue in Chrome. – joshnh Aug 16 '12 at 6:17

1 Answer

This is because Firefox does not allow certain styles on :visited, for privacy reasons.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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