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.

http://jsfiddle.net/fseqt/1/

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; 

http://jsfiddle.net/fseqt/7/


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -