I know that if we want to make sure some CSS3 features work everywhere, we need to use prefix versions of the recommended W3C:
transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-webkit-transition: all 1s ease;
I know that prefixes are used for experimental functions, but why are they needed? Why don't they test them on the original W3C? Does every CSS3 function have or have a prefix for each browser, or do they just create a prefix version if they think they should?
source
share