Created
February 23, 2013 20:21
-
-
Save jhilden/5021188 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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
// Sass v3.2.5 | |
.context-a, .context-b | |
border: 1px | |
.some-class | |
color: red | |
.another-class | |
color: blue |
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
.context-a, .context-b { | |
border: 1px; | |
} | |
.context-a .some-class, .context-b .some-class { | |
color: red; | |
} | |
.context-a .another-class, .context-b .another-class { | |
color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment