Skip to content

Instantly share code, notes, and snippets.

@arlodesign
Created July 1, 2015 20:42
Show Gist options
  • Save arlodesign/28d7170054a69e6e4ae0 to your computer and use it in GitHub Desktop.
Save arlodesign/28d7170054a69e6e4ae0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
div {
@each $lang in (en-us, es-la, pt-br) {
html[lang="#{$lang}"] & {
background-image: url(http://url.com/#{$lang}/image.png);
}
}
}
html[lang="en-us"] div {
background-image: url(http://url.com/en-us/image.png);
}
html[lang="es-la"] div {
background-image: url(http://url.com/es-la/image.png);
}
html[lang="pt-br"] div {
background-image: url(http://url.com/pt-br/image.png);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment