Skip to content

Instantly share code, notes, and snippets.

@bensmithett
Created March 27, 2014 06:01
Show Gist options
  • Save bensmithett/9801283 to your computer and use it in GitHub Desktop.
Save bensmithett/9801283 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="parent-class dropdown-toggle">Hi</div>
<div class="dropdown-toggle parent-class">Hi</div>
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
.parent-class {
&.dropdown-toggle {
color: red;
}
}
.dropdown-toggle {
&.parent-class {
color: blue;
}
}
.parent-class.dropdown-toggle {
color: red;
}
.dropdown-toggle.parent-class {
color: blue;
}
<div class="parent-class dropdown-toggle">Hi</div>
<div class="dropdown-toggle parent-class">Hi</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment