css - CSS3 Transition (cubic-bezier) is not working in Firefox -
transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0;
it supported according w3schools.
works fine in chrome, ie , opera.
oddly not including unit of seconds in transition-delay
property causes transition not work. change transition
rule to:
transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1) 0s;