Skip to content

Instantly share code, notes, and snippets.

@khamer
Created November 29, 2013 16:34
Show Gist options
  • Select an option

  • Save khamer/7708332 to your computer and use it in GitHub Desktop.

Select an option

Save khamer/7708332 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@mixin for-tablets-and-up {
@media only screen and (min-width: 600px) {
@content;
}
html.lt-ie9 & {
@content;
}
}
@mixin foobar {
@include for-tablets-and-up {
background: blue;
}
}
.example {
@include foobar;
}
@media only screen and (min-width: 600px) {
.example {
background: blue;
}
}
html.lt-ie9 .example {
background: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment