Hello. Just wondering, when you make a transform, it is aliased kinda bad in FF. So, why does adding outline: 1px solid transparent; make it render smooth?..
Also, why do you need so many different browser specific CSS when most of the time except in a few cases that I've seen so far there is no difference in code?
Ex:
-webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
-moz-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
-o-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
Also, why do you need so many different browser specific CSS when most of the time except in a few cases that I've seen so far there is no difference in code?
Ex:
-webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
-moz-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
-o-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);



