Skip to content

Instantly share code, notes, and snippets.

@skeep
Last active September 8, 2015 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skeep/f4c9175bf14b4918acb6 to your computer and use it in GitHub Desktop.
Save skeep/f4c9175bf14b4918acb6 to your computer and use it in GitHub Desktop.
BEM
.book
color: yellow
&_fav
color: red
&--active
color: green
@skeep
Copy link
Author

skeep commented Sep 8, 2015

.book {
  color: yellow;
}

.book_fav {
  color: red;
}

.book_fav--active {
  color: green;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment