Skip to content

Instantly share code, notes, and snippets.

@sagiavinash
Last active September 22, 2017 08:33
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 sagiavinash/e1dae542f1b575411143d16f74355f07 to your computer and use it in GitHub Desktop.
Save sagiavinash/e1dae542f1b575411143d16f74355f07 to your computer and use it in GitHub Desktop.
Targeting multiple classes in sass
.a-b.a-c {
color: black;
}
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
.a {
&-b#{'#{&}-c'} {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment