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

frakim on 02/17/08


Tagged

ie comment conditional


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

cczona


ie conditional comment


Published in: HTML 


URL: http://www.javascriptkit.com/howto/cc2.shtml

  1. <p><!--[if IE]>
  2. According to the conditional comment this is Internet Explorer<br />
  3. <![endif]-->
  4. <!--[if IE 5]>
  5. According to the conditional comment this is Internet Explorer 5<br />
  6. <![endif]-->
  7. <!--[if IE 5.0]>
  8. According to the conditional comment this is Internet Explorer 5.0<br />
  9. <![endif]-->
  10. <!--[if IE 5.5]>
  11. According to the conditional comment this is Internet Explorer 5.5<br />
  12. <![endif]-->
  13. <!--[if IE 6]>
  14. According to the conditional comment this is Internet Explorer 6<br />
  15. <![endif]-->
  16. <!--[if IE 7]>
  17. According to the conditional comment this is Internet Explorer 7<br />
  18. <![endif]-->
  19. <!--[if gte IE 5]>
  20. According to the conditional comment this is Internet Explorer 5 and up<br />
  21. <![endif]-->
  22. <!--[if lt IE 6]>
  23. According to the conditional comment this is Internet Explorer lower than 6<br />
  24. <![endif]-->
  25. <!--[if lte IE 5.5]>
  26. According to the conditional comment this is Internet Explorer lower or equal to 5.5<br />
  27. <![endif]-->
  28. <!--[if gt IE 6]>
  29. According to the conditional comment this is Internet Explorer greater than 6<br />
  30. <![endif]-->
  31. </p>
  32. Note the special syntax:
  33.  
  34. gt: greater than
  35. lte: less than or equal to

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: jonhenshaw on February 18, 2008

Now that's a serious conditional comment! I generally stick to two conditional comments. One that catches IE6 and before and one that catches IE7.

You need to login to post a comment.