look at the mixin on the official website with parentheses. In actual development, parentheses are sometimes omitted, and the compilation results of the following less are all the same. Can you indicate whether adding parentheses means the same meaning when mixin is introduced?
.bordered {
border-top: dotted 1px black;
border-bottom: solid 2px black;
}
-sharpmenu a {
color: -sharp111;
.bordered;
}
.post a {
color: red;
.bordered;
}
and
.bordered {
border-top: dotted 1px black;
border-bottom: solid 2px black;
}
-sharpmenu a {
color: -sharp111;
.bordered();
}
.post a {
color: red;
.bordered();
}