Is it possible to use Compass or SASS to output the following CSS transition that will output all the various vendor prefixes:
-webkit-transition: all 0.3s ease-in-out;
Can anyone point me to the correct library?
Use compass' transition
mixin:
@include transition(all 0.3s ease-in-out);