<!--[if IE 6]>
I am using IE6
<![endif]-->
That works.
How do I do "or" IE7?
<!--[if IE 6]>
I am using IE6
<![endif]-->
That works.
How do I do "or" IE7?
you can do
<!--[if IE <e; 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
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.