Overwrite less mixin
问题 I wish to remove border radius from all the elements in Bootstrap. So I created custom-mixins.less and placed following lines in it, hopping that it would overwrite the original .border-radius mixin but didn't. // Border Radius .border-radius(@radius) { } So I tried following lines as an alternative which actually worked. // Border Radius .border-radius(@radius) { @radius : 0px; -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; } I tried some mixins at http: