Skip to content

Instantly share code, notes, and snippets.

@joshuarule
Created November 18, 2014 20:52
Show Gist options
  • Save joshuarule/5169867e4e5859cfa0a5 to your computer and use it in GitHub Desktop.
Save joshuarule/5169867e4e5859cfa0a5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
%ul
%li
this is my base li
%ul.unique
%li.unique-li
this is my unique li
// ----
// libsass (v3.0.1)
// ----
li {
display: block;
background: green;
}
.unique-li {
color: blue;
}
li {
display: block;
background: green; }
.unique-li {
color: blue; }
<ul>
<li>
this is my base li
</li>
</ul>
<ul class='unique'>
<li class='unique-li'>
this is my unique li
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment