i have this markup which works fine:
<div id="hd1" class="header headerNotIE6">
i am now trying to put a ie6 specific workaround so i am trying to only have this div if the browser is not IE 6. So i want this line to hit if its IE7, 8 and firefox and chrome. I tried this but it doesn't seem to work in Firefox or Chrome.
<!--[if !(IE 6)]>
<div id="hd1" class="header headerNotIE6">
<![endif]-->
is there any "if everything but IE6" conditional comment that works in an html file ??