Skip to content

Instantly share code, notes, and snippets.

@edwardoriordan
Created April 26, 2011 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save edwardoriordan/943374 to your computer and use it in GitHub Desktop.
Save edwardoriordan/943374 to your computer and use it in GitHub Desktop.
Two ways for making sharing styles with IE
@mixin do_layout() {
//stuff for a middle layout
}
@media only screen and (min-width: 768px) {
@include do_layout();
}
body.ie {
@include do_layout();
}
//OR NOW
body.ie {
@import media/1382.css
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment