Which is the correct syntax to define a mixin?
Options:
Explanation:
The correct syntax to define a mixin is:
Tags:
SASS
Computer
Answer:
Which is the correct syntax to define a mixin <pre class="w3-ex">@mixin name {
property: value;
property: value;
...
}</pre>.