Skip to content

Instantly share code, notes, and snippets.

@willwright82
Created July 17, 2014 09:57
Show Gist options
  • Save willwright82/c94c8955ca312ecdb998 to your computer and use it in GitHub Desktop.
Save willwright82/c94c8955ca312ecdb998 to your computer and use it in GitHub Desktop.
Conditional CSS
<!--[if lt IE 7]> <html class="ie6"> <![endif]-->
<!--[if IE 7]> <html class="ie7"> <![endif]-->
<!--[if IE 8]> <html class="ie8"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<style>
div.foo { color: inherit;}
.ie6 div.foo { color: #ff8000; }
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment