Skip to content

Instantly share code, notes, and snippets.

@wfendler
Created April 16, 2013 20:14
Show Gist options
  • Save wfendler/5399220 to your computer and use it in GitHub Desktop.
Save wfendler/5399220 to your computer and use it in GitHub Desktop.
.crazy-css3 {
css3prop: crazy-value;
.lt-ie9 & {
ie-fallback: awesome;
}
}
// compiles to:
.crazy-css3 {
css3prop: crazy-value;
}
.lt-ie9 .crazy-css3 {
ie-fallback: awesome;
}
@ratbeard
Copy link

crazy

body {
    html & span { background  :red }  
}

even works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment