CSS optimization - extra classes in dom or preprocessor-repetitive styling in css file?
- by anna.mi
I'm starting on a fairly large project and I'm considering the option of using LESS for pre-processing my css.
the useful thing about LESS is that you can define a mixin that contains for example:
.border-radius(@radius) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
-o-border-radius: @radius;
-ms-border-radius:…