Created
November 2, 2012 13:48
-
-
Save mikermcneil/4001474 to your computer and use it in GitHub Desktop.
ie conditional stylesheet example for sebastian
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- http://css-tricks.com/how-to-create-an-ie-only-stylesheet/ --> | |
| <!--[if IE 7]> | |
| <link rel="stylesheet" type="text/css" href="/stylesheets/ie7.css" /> <![endif]--> | |
| <!--[if lt IE 9]> | |
| <link rel="stylesheet" type="text/css" href="/stylesheets/ie7_and_8.css" /> <![endif]--> | |
| </head> | |
| <body></body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment