Skip to content

Instantly share code, notes, and snippets.

@foxx
Created August 22, 2015 22:36
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 foxx/1538e7f73c9efb10d314 to your computer and use it in GitHub Desktop.
Save foxx/1538e7f73c9efb10d314 to your computer and use it in GitHub Desktop.
<!-- BEM EXAMPLE -->
<style>
.btn { display: block; color: red; }
.btn--orange { color: orange; }
</style>
<div class="btn btn--orange"></div>
<!-- NON-BEM EXAMPLE -->
<style>
.btn { display: block; color: red; }
.btn.orange { color: orange; }
</style>
<div class="btn orange"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment