Created
July 31, 2014 05:48
-
-
Save jhgaylor/fce2480d12a96b316571 to your computer and use it in GitHub Desktop.
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
<div class="wall-full-screen-template other-class"> | |
<ul class="foo"> | |
<li class="bar">a</li> | |
<li class="bar">b</li> | |
<li class="bar">c</li> | |
<li class="bar">d</li> | |
<li class="bar baz">e</li> | |
</ul> | |
</div> |
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
.wall-full-screen-template { | |
.foo { | |
// this is applied to any .foo inside of a .wall-full-screen-template (children, grandchildren, etc) | |
.bar { | |
// this is applied to any .bar inside a .foo inside a .wall-full-screen-template | |
&.baz { | |
// this is applied to any .bar.baz inside a .foo inside a .wall-full-screen-template | |
} | |
} | |
} | |
&.other-class { | |
//this gets applied to any element w/ both .wall-full-screen-template and other-class | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment