Skip to content

Instantly share code, notes, and snippets.

@gaboratorium
Last active June 3, 2016 07:12
Show Gist options
  • Save gaboratorium/192229d5a1c0c87371efe937443bb395 to your computer and use it in GitHub Desktop.
Save gaboratorium/192229d5a1c0c87371efe937443bb395 to your computer and use it in GitHub Desktop.
BEM naming convention in CSS #bem #css #sass
// Search UI Block
.search {
// Elements
> .search__field {
/* ... */
}
> .search__btn {
/* ... */
}
//Modifiers
&.search--condensed {
/* ... */
}
&.search--compact {
/* ... */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment