Skip to content

Instantly share code, notes, and snippets.

@amboy00
Created January 15, 2014 17:37
Show Gist options
  • Save amboy00/8440688 to your computer and use it in GitHub Desktop.
Save amboy00/8440688 to your computer and use it in GitHub Desktop.
IE8 support
// _hero-medium.less
.hero-medium {
// medium screen code
}
// ie.css
@import "hero-medium";
.hero-medium; //mixin from import
// main.css
@import "hero-medium";
#hero {
// small screen code
}
@media only screen and (@medium) {
.hero-medium; // mixin from import
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment