Skip to content

Instantly share code, notes, and snippets.

@mirisuzanne
Forked from edwardoriordan/gist:943374
Created April 26, 2011 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mirisuzanne/943381 to your computer and use it in GitHub Desktop.
Save mirisuzanne/943381 to your computer and use it in GitHub Desktop.
Two ways for making sharing styles with IE
// just a sample...
div[role="main"] {
@include un-column;
@include full;
@include pie-clearfix;
@include adjust-font-size-to(21px);
// we can handle the differences inline...
.ie7 &, .ie8 & {
@include trailer(1, 21px);
}
}
@media only screen and (min-width: 768px) {
@import "768.scss";
}
.ie {
@import "768.scss";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment