Skip to content

Instantly share code, notes, and snippets.

@kawasako
Created August 24, 2013 07:14
Show Gist options
  • Save kawasako/6326604 to your computer and use it in GitHub Desktop.
Save kawasako/6326604 to your computer and use it in GitHub Desktop.
Sass @content
// Example
@mixin hoge {
p {
color: red;
@content;
}
}
.alert {
@include hoge;
}
.danger {
@include hoge{
font-weight: bold;
}
}
// Reslt
.danger p {
color: red;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment