Skip to content

Instantly share code, notes, and snippets.

@htmlzengarden
Last active August 29, 2015 14:17
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 htmlzengarden/0a1c7be2c3c2fe829eb2 to your computer and use it in GitHub Desktop.
Save htmlzengarden/0a1c7be2c3c2fe829eb2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div data-color="red"></div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$prefix: 'foo';
.#{$prefix}
{
&-category
{
color: green;
&-posts
{
color: red;
}
.#{$prefix}
{
&-category
{
&-posts
{
color: blue;
}
}
}
}
}
.foo-category {
color: green;
}
.foo-category-posts {
color: red;
}
.foo-category .foo-category-posts {
color: blue;
}
<div data-color="red"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment