Skip to content

Instantly share code, notes, and snippets.

@achisholm
Created March 11, 2018 07:59
Show Gist options
  • Save achisholm/d1155c1510ff244c1c9d79a17a8a54c7 to your computer and use it in GitHub Desktop.
Save achisholm/d1155c1510ff244c1c9d79a17a8a54c7 to your computer and use it in GitHub Desktop.
The okay-way to nest BEM-style selectors
.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