Skip to content

Instantly share code, notes, and snippets.

@tomleo
Created February 11, 2015 18:44
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 tomleo/9649a13c08c714948a96 to your computer and use it in GitHub Desktop.
Save tomleo/9649a13c08c714948a96 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
// Via http://css-tricks.com/strategies-keeping-css-specificity-low/
// We can use this SASS format when creating modules
.what {
color: red;
&-so {
color: green;
&-ever {
color: blue;
}
}
}
.what {
color: red;
}
.what-so {
color: green;
}
.what-so-ever {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment