Created
January 13, 2015 21:24
-
-
Save tanshio/0957145e9a7c662e410b to your computer and use it in GitHub Desktop.
sass-map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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