Skip to content

Instantly share code, notes, and snippets.

@tanshio
Created January 13, 2015 21:24
Show Gist options
  • Save tanshio/0957145e9a7c662e410b to your computer and use it in GitHub Desktop.
Save tanshio/0957145e9a7c662e410b to your computer and use it in GitHub Desktop.
sass-map
$map: (
key1: 10px,
key2: 20px,
key3: (
nested-key1: red,
nested-key2: blue,
),
);
.map {
margin: map-get($map, key1);
//margin: 10px
}
//あんまり使わない
.map-nest {
color: map-get( map-get($map, key3), nested-key1 );
//color: red
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment