We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

stavelin on 02/24/08


Tagged

css browser ie6 ie7 targetMSIE


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

SpinZ
wbowers
cczona


Only IE6 / IE7


Published in: HTML 


Target only internet explorer 6/7 with external CSS

  1. <!--[if IE 7]>
  2. <link rel="stylesheet" type="text/css" href="/css/IE7.css" />
  3. <![endif]-->
  4.  
  5. <!--[if IE 6]>
  6. <link rel="stylesheet" type="text/css" href="/css/IE66.css" />
  7. <![endif]-->

Report this snippet 

You need to login to post a comment.