Created
April 26, 2011 22:57
-
-
Save edwardoriordan/943374 to your computer and use it in GitHub Desktop.
Two ways for making sharing styles with IE
This file contains 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
@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