Created
December 18, 2011 17:02
-
-
Save rickharris/1493930 to your computer and use it in GitHub Desktop.
Media queries with IE support using Sass 3.2 features
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
body { | |
font-size: 18px; | |
color: blue; } |
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
// Transparently ignore media queries for your IE stylesheet | |
@mixin respond-to($media) { | |
@content | |
} | |
@import "shared"; |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Responsive Example w/ IE Fallback</title> | |
<!--[if (gt IE 8) | (IEMobile)]><!--> | |
<link rel="stylesheet" href="style.css"> | |
<!--<![endif]--> | |
<!--[if (lt IE 9) & (!IEMobile)]> | |
<link rel="stylesheet" href="ie.css"> | |
<![endif]--> | |
</head> | |
<body></body> | |
</html> |
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
body { | |
font-size: 18px; } | |
@media only screen and (min-width: 992px) { | |
body { | |
color: blue; } } |
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
// media query mixin | |
// see https://gist.github.com/1215856#file_6_media_queries.scss | |
@mixin respond-to($media) { | |
@if $media == handhelds { | |
@content | |
} | |
@else if $media == wide-handhelds { | |
@media only screen and (min-width: 480px) { @content; } | |
} | |
@else if $media == tablets { | |
@media only screen and (min-width: 768px) { @content; } | |
} | |
@else if $media == desktops { | |
@media only screen and (min-width: 992px) { @content; } | |
} | |
} | |
@import "shared"; |
This is my current solution for ie.scss:
@mixin respond-to($media) {
@if $media != widescreen {
@content;
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What if I have one more breakpoint, say 'widescreen', but I don't want these to show in <ie9. I only want the styles up to the desktops breakpoint. How do I accomplish this?