Reputation: 3615
I'm using this for my link-hover-transition-effect:
-webkit-transition: color 250ms ease-in 0;
-moz-transition: color 250ms ease-in 0;
-o-transition: color 250ms ease-in 0;
transition: color 250ms ease-in 0;
It works in Opera, Chrome but not in Firefox. I don't care about IE.
According to this, it should work: https://developer.mozilla.org/en/CSS/CSS_transitions#AutoCompatibilityTable
Any idea what is wrong with that?
Upvotes: 0
Views: 212
Reputation: 298552
It seems like the 0
at the end was breaking the transformation.
This works for me: http://jsfiddle.net/An4zV/2/
Upvotes: 0