Skip to content

Instantly share code, notes, and snippets.

@asimonok
Created November 16, 2015 10:05
Show Gist options
  • Save asimonok/713b91e16a5a5a657eb6 to your computer and use it in GitHub Desktop.
Save asimonok/713b91e16a5a5a657eb6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li class="red">red</li>
<li class="black">black</li>
<li class="green">green</li>
</ul>
// ----
// libsass (v3.2.5)
// ----
$colors: red, black, green;
@each $color in $colors{
.#{$color}{
background:$color;
}
}
.red {
background: red;
}
.black {
background: black;
}
.green {
background: green;
}
<ul>
<li class="red">red</li>
<li class="black">black</li>
<li class="green">green</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment