Last active
May 28, 2020 13:35
-
-
Save Oldenborg/b6f09fb3b643634deb3d3e85b7f19715 to your computer and use it in GitHub Desktop.
BEM grandchildren - yes or no?
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
// Example #1 | |
.tree__branch--green { | |
.twig__leaf { | |
color: green; | |
} | |
} | |
// Example #2 | |
.tree__branch--green__twig__leaf { | |
color: green; | |
} | |
// Example #3 |
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="tree"> | |
<div class="tree__branch"> | |
<div class="twig"> | |
<div class="twig__leaf"></div> | |
</div> | |
<div class="twig"> | |
<div class="twig__leaf"></div> | |
</div> | |
</div> | |
<div class="tree__branch"> | |
<div class="twig"> | |
<div class="twig__leaf"></div> | |
</div> | |
<div class="twig"> | |
<div class="twig__leaf"></div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment