Skip to content

Instantly share code, notes, and snippets.

@alienresident
Created October 24, 2013 18:33
Show Gist options
  • Save alienresident/7142577 to your computer and use it in GitHub Desktop.
Save alienresident/7142577 to your computer and use it in GitHub Desktop.
Testing the new & features in sass 3.3.0.rc.1
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
@mixin specificity {
&#{&} {
@content;
}
}
.whatever {
@include specificity {
border: solid;
}
}
.whatever.whatever {
border: solid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment