Skip to content

Instantly share code, notes, and snippets.

@tomwray13
Created January 15, 2020 14:46
Show Gist options
  • Save tomwray13/496d9713e3e9947b3ef7af227614a3eb to your computer and use it in GitHub Desktop.
Save tomwray13/496d9713e3e9947b3ef7af227614a3eb to your computer and use it in GitHub Desktop.
BEM Modifiers (Incorrect Usage)
<!-- INCORRECT -->
<div class="card--dark">
<img src="…">
<h2 class="card__title--large">…</h2>
<p>…</p>
<a>…</a>
</div>
<style>
.card--dark {}
.card__title--large {}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment