Skip to content

Instantly share code, notes, and snippets.

@crazyrohila
Created August 4, 2014 09:44
Show Gist options
  • Save crazyrohila/8d4a88d033bbe9391bff to your computer and use it in GitHub Desktop.
Save crazyrohila/8d4a88d033bbe9391bff to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.0)
// ----
%header {
h2 {
color: yellow;
}
h3 {
color: red;
}
}
header {
h3 {
color: green;
}
}
.test1 {
@extend %header;
}
.test2 {
@extend h3;
}
.test1 h2 {
color: yellow;
}
.test1 h3, .test1 .test2 {
color: red;
}
header h3, header .test2 {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment