I'm a bit worried about having to write cross-browser CSS directives every time I use a CSS3 feature, for example:
-webkit-transform: rotate(7.5deg); /* Safari 3.1+, Chrome
-moz-transform: rotate(7.5deg); /* Firefox 3.5-15
-ms-transform: rotate(7.5deg); /* IE9
-o-transform: rotate(7.5deg); /* Opera 10.5-12.00
transform: rotate(7.5deg); /* Firefox 16+, Opera 12.50+
In the same way that CSS3 PIE works for IE, is there a javascript library that we could just include as a one-liner in the html <head>, that would read the standard version of the CSS directive (transform: in this example), and apply the specific one for the current browser?
That would allow me to write valid CSS3 code, and even more important, write less code.