Created
March 11, 2018 07:59
-
-
Save achisholm/d1155c1510ff244c1c9d79a17a8a54c7 to your computer and use it in GitHub Desktop.
The okay-way to nest BEM-style selectors
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
.block { | |
// Declarations for `.block` | |
&__element { | |
// Declarations for `.block__element` | |
} | |
&--modifier { | |
// CSS declarations for `.block--modifier` | |
&__element { | |
// CSS declarations for `.block--modifier__element` | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment