Skip to content

Instantly share code, notes, and snippets.

@benknight
Last active December 22, 2015 17:08
Show Gist options
  • Save benknight/6503634 to your computer and use it in GitHub Desktop.
Save benknight/6503634 to your computer and use it in GitHub Desktop.
Scss @extend puzzle
// In:
// ---
li ul li a {
color: white;
}
li li li b {
@extend a;
}
// Out (expected):
// ---------------
li ul li a,
li li ul li b,
li ul li li b {
color: white;
}
// Out (actual - Ruby):
// --------------------
li ul li a,
li ul li li b {
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment