Skip to content

Instantly share code, notes, and snippets.

@anova
Created October 8, 2013 13:03
Show Gist options
  • Save anova/6884336 to your computer and use it in GitHub Desktop.
Save anova/6884336 to your computer and use it in GitHub Desktop.
Show a warning message who uses IE 7 or lower.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Show a warning message if user visiting with IE 7</title>
</head>
<body>
<!--[if lt IE 8]>
<p>Warning message for who uses IE 7.</p>
<![endif]-->
<!--[if gte IE 8]><!-->
<p>Content for modern browsers. (And some IE versions)</p>
<!--<![endif]-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment