Skip to content

Instantly share code, notes, and snippets.

@chentsulin
Created October 30, 2013 08:24
Show Gist options
  • Save chentsulin/7228929 to your computer and use it in GitHub Desktop.
Save chentsulin/7228929 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$users: amy annie eric
@each $u in $users
.user-#{$u}
background: url(#{$u}.jpg)
.user-amy {
background: url(amy.jpg);
}
.user-annie {
background: url(annie.jpg);
}
.user-eric {
background: url(eric.jpg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment