SCSS Compiler
// @mixin with optional argument @mixin reset-ul($a, $b: red) { margin: 0; padding: 0; font-size: $a; color: $b; list-style-type: none; } footer ul{ @include reset-ul(20px); }
OUTPUT
×

Save as Private