Through Css optimizer optimized css, however this:
transition: all 0.2s 0s linear; -moz-transition: all 0.2s 0s linear; -webkit-transition: all 0.2s 0s linear; -o-transition: all 0.2s 0s linear; he changed to:
transition: all .2s 0 linear; -moz-transition: all .2s 0 linear; -webkit-transition: all .2s 0 linear; -o-transition: all .2s 0 linear; And now the browser swears at the transition invalid property value
Who knows how to solve the problem? Why this design does not work after optimization?