Last active
August 29, 2015 14:21
-
-
Save jdsteinbach/a7992a3b6dafc4a6eff6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // 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; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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