Skip to content

Instantly share code, notes, and snippets.

@iamalfonse
Created July 7, 2015 00:37
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 iamalfonse/f14344f850a11a9aa227 to your computer and use it in GitHub Desktop.
Save iamalfonse/f14344f850a11a9aa227 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="square orange">Orange</div>
<div class="square blue">Blue</div>
// ----
// libsass (v3.2.5)
// ----
.square {
width: 100px;
height: 100px;
&.orange {
background: orange;
}
&.blue {
background: blue;
}
}
.square {
width: 100px;
height: 100px;
}
.square.orange {
background: orange;
}
.square.blue {
background: blue;
}
<div class="square orange">Orange</div>
<div class="square blue">Blue</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment