Skip to content

Instantly share code, notes, and snippets.

@MikeRogers0
Created June 10, 2012 22:51
Show Gist options
  • Save MikeRogers0/2907580 to your computer and use it in GitHub Desktop.
Save MikeRogers0/2907580 to your computer and use it in GitHub Desktop.
Conditional Comments
<!–[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