Skip to content

Instantly share code, notes, and snippets.

@3den
Created December 11, 2014 18:05
Show Gist options
  • Save 3den/5973be0c12bac7fd3767 to your computer and use it in GitHub Desktop.
Save 3den/5973be0c12bac7fd3767 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$list: (
(a: ".div-1", b: (a: 100px)),
(a: ".div-2", b: (a: 200px)),
(a: ".div-3", b: (a: 300px)),
);
@each $item in $list {
$selector: map-get($item, a);
$width: map-get(map-get($item, b), a);
#{$selector} {
width: $width;
}
}
.div-1 {
width: 100px;
}
.div-2 {
width: 200px;
}
.div-3 {
width: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment