Is there a simple way to convert my Less code into browser-compatible CSS like the example below?
#grad1 {
background: -webkit-linear-gradient(red, blue); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(red, blue); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, blue); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, blue); /* Standard syntax (must be last) */
}
Or do I need to manually write the CSS?
I've also noticed that my Less code doesn't compile alphabetically. Currently, I'm using this command line lessc (less file) (css file)