Skip to content

Instantly share code, notes, and snippets.

@gunderwonder
Created August 26, 2010 10:59
Show Gist options
  • Save gunderwonder/551218 to your computer and use it in GitHub Desktop.
Save gunderwonder/551218 to your computer and use it in GitHub Desktop.
HTML5 boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 boilerplate with IE conditional comments magic</title>
</head>
<!--[if lt IE 7]> <body class="ie ie6"> <![endif]-->
<!--[if IE 7]> <body class="ie ie7"> <![endif]-->
<!--[if IE 8]> <body class="ie ie8"> <![endif]-->
<!--[if IE 9]> <body class="ie ie9"> <![endif]-->
<!--[if gt IE 9]> <body> <![endif]-->
<!--[if !IE]><!--> <body> <!--<![endif]-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment