This may be a quick and easy question, but I still could not find the answer.
Less is there any way to use mixin (say .mixin(@a: 2, @b: 3) { /* css here */ } ) and only supply values ββfor the given parameters? I know I can use this as .mixin(5) , which will be the same as .mixin(5, 3) , but can I do something like .mixin(@b: 5) ? The value is the same as .mixin(2, 5) (however, I did not need to know the value of a to use by default).
source share