Question

<!--[if IE 6]>
I am using IE6
<![endif]-->

That works.

How do I do "or" IE7?

Was it helpful?

Solution

If you, for whatever reason, what to only test for IE6 or IE7, and maybe have some other conditions for IE5 elsewhere, there is also support for other operators:

  <!--[if (IE 6)|(IE 7)]>
    This is IE 6 or IE 7!
  <![endif]-->

Check out the wikipedia article which has better documentation than Quirksmode on this.

OTHER TIPS

you can do

<!--[if lte IE 7]>
I am using IE less than or equal to version 7
<![endif]-->

Have a look at http://www.quirksmode.org/css/condcom.html#link3 for detailed options..

same exact format. just change the ie version. Refer to here. http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top