Generating isolated IE-specific stylesheet
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
.a { | |
background: red; | |
/* dropped linear gradient based on IE CSS support (like what autoprefixer does) */ | |
zoom: 1; | |
} | |
.b { | |
background: green; | |
} |
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
.a { | |
background: linear-gradient(red, orange); | |
} | |
.b { | |
background: green; | |
} |
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> | |
<!--[if (gt IE ?)]><!--><link rel="stylesheet" href="generated-not-ie.css"><!--<![endif]--> | |
<!--[if (lt IE ?)]><link rel="stylesheet" href="generated-ie.css"><![endif]--> | |
<div class="a b"> | |
has GREEN background in all browsers | |
fewer HTTP requests for IE than https://gist.github.com/necolas/8969492 | |
</div> | |
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
.a { | |
background: red; | |
background: linear-gradient(red, orange); | |
zoom: 1; | |
} | |
.b { | |
background: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment