Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created April 27, 2012 06:33
Show Gist options
  • Save rpearce/2506609 to your computer and use it in GitHub Desktop.
Save rpearce/2506609 to your computer and use it in GitHub Desktop.
SASS each example1
@each $item in $my-list {
.#{item} {
background: #0099ff; }
}
(compiles to...)
.design {
background: #0099ff; }
.statistics {
background: #0099ff; }
.english {
background: #0099ff; }
.yosup {
background: #0099ff; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment