Skip to content

Instantly share code, notes, and snippets.

@bogdansoare
Created July 19, 2014 12:09
Show Gist options
  • Save bogdansoare/a55b0ab3782cc2a7a6f8 to your computer and use it in GitHub Desktop.
Save bogdansoare/a55b0ab3782cc2a7a6f8 to your computer and use it in GitHub Desktop.
Sass BEM-Selector
.nav {
background: white;
// element .nav__link
&__link {
font-size: 1.2em;
color: red;
padding: 0.2em 0.5em;
// modifier .nav__link--twitter
&--twitter {
color: blue;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment