Created
June 10, 2012 22:51
-
-
Save MikeRogers0/2907580 to your computer and use it in GitHub Desktop.
Conditional Comments
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
<!–[if IE]> | |
This will only show for Internet Explorer (IE) | |
<![endif]–> | |
<!–[if !IE]> | |
This will only show if the client is not using IE. | |
<!–[endif]> | |
<![if IE 6]–> | |
Only shows on IE6 | |
<!–[endif]> | |
<![if lte IE 6]–> | |
Any IE browser less than or equal to version 6. | |
<!–[endif]> | |
<![if gte IE 7]–> | |
Any IE browser higher or equal to IE 7 | |
<!–[endif]> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment