Skip to content

Instantly share code, notes, and snippets.

@elicwhite
Created August 17, 2015 17:00
Show Gist options
  • Save elicwhite/607545eb1ca1558f79bd to your computer and use it in GitHub Desktop.
Save elicwhite/607545eb1ca1558f79bd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$placeholder-name: 'foo';
@for $i from 1 through 4 {
%#{$placeholder-name}-#{$i} {
content: $i;
}
}
.foo {
@extend %foo-1;
}
.bar {
@extend %foo-4;
}
.foo {
content: 1;
}
.bar {
content: 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment