Are there significant differences between a particular set of rules, for example
@detached-ruleset: {
@margin: 1px;
margin: @margin;
};
and nonparametric mixin? For instance.
.mixin() {
@margin: 1px;
margin: @margin;
}
Do they behave the same with nested statements?
The most obvious difference is syntactic (a semicolon is required for a set of rules), and a set of rules saves its variables as private, but all that I could find. The manual does not cover the details in too much detail.
estus source
share