-
-
Save mirisuzanne/943381 to your computer and use it in GitHub Desktop.
Two ways for making sharing styles with IE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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