// Less .rounded-corners (@radius: 5px) { -webkit-border-radius: @radius; -moz-border-radius: @radius; -ms-border-radius: @radius; -o-border-radius: @radius; border-radius: @radius; } // Sass + Compass .rounded-corners { // All vendor prefixes are generated for you @include border-radius(5px); }
Another thing... Sass has much nicer control flow (if/else, while, for) that can create very powerful mixins.
Another thing... Sass has much nicer control flow (if/else, while, for) that can create very powerful mixins.