Skip to content

Instantly share code, notes, and snippets.

@jdsteinbach
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save jdsteinbach/a7992a3b6dafc4a6eff6 to your computer and use it in GitHub Desktop.

Select an option

Save jdsteinbach/a7992a3b6dafc4a6eff6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
.page-title {
color: red;
// `#{&}` doesn't count as using `&` in the selector, so it still nests
div#{&} {
color: blue;
}
// definitely don't expect this to work bc `&` could start w/ a tag
// h1& {
// color: gray;
// }
// `@at-root` doesn't work with LibSass right now
@at-root h2#{&} {
color: purple;
}
}
.page-title {
color: red;
}
.page-title div.page-title {
color: blue;
}
.page-title h2.page-title {
color: purple;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment