Created
September 16, 2014 22:21
-
-
Save MichaelArestad/bc76aa7af9d1703d62e4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$array:('grumpy', 'nyan', 'felix-the'); | |
@each $cat in $array { | |
.#{$cat}-cat { | |
content: '#{$cat} cat'; | |
} | |
} |
This file contains hidden or 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
.grumpy-cat { | |
content: "grumpy cat"; | |
} | |
.nyan-cat { | |
content: "nyan cat"; | |
} | |
.felix-the-cat { | |
content: "felix-the cat"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment