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?
250msto0.25s?