Specifically looking at things with a -webkit, -moz -o prefix such as transform, transition, etc...
I'm wanting something like a smart sass (which I thought would probably do it, but doesn't appear to) that would take the generic form of commands and write all the long prefixed versions for me. For example:
.shrink {
-webkit-transition: -webkit-transform 1s;
-webkit-transform: scale(0);
-moz-transition: -moz-transform 1s;
-moz-transform: scale(0);
-o-transition: -o-transform 1s;
-o-transform: scale(0);
}
would be written as
.shrink {
transition: transform 1s;
transform: scale(0);
}
and the css "compiler" would write out all the other stuff.....