Created
June 17, 2015 09:48
-
-
Save shaunbent/aa983406bfe3e074e87b to your computer and use it in GitHub Desktop.
Stylesheet Loading
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
<!--[if lte IE 8]> | |
<link rel="stylesheet" href="path/to/fixed.css" /> | |
<![endif]--> | |
<!--[if gt IE 8]><!--> | |
<link rel="stylesheet" href="path/to/enhanced.css" /> | |
<!--<![endif]--> |
OK. got it.. all explained here.. thnx http://www.sitepoint.com/web-foundations/internet-explorer-conditional-comments/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK. So, this is new to me... a comment within a conditional comment would get executed by non-IE browsers? How?