Skip to content

Instantly share code, notes, and snippets.

@mariusz
Created August 11, 2012 21:17
Show Gist options
  • Save mariusz/3327369 to your computer and use it in GitHub Desktop.
Save mariusz/3327369 to your computer and use it in GitHub Desktop.
Using %placeholder extend in Sass
%floated-box {
display:block;
float:left;
}
[role=main] {
@extend %floated-box;
background:red;
}
[role=side] {
@extend %floated-box;
background:blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment