Closed
Description
For now, I need to write a mixin for sth like border-radius, gradients, etc. and add all vendor prefixes within the mixin. Could less itself care about this?
.myclass {
border-radius: 4px;
}
gets transformed into:
.myclass {
-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
}
So mixins for all the new properties coming along are handled internally and we can write cleaner, vanilla css without abusing mixins for that stuff.