If not IE, conditional HTML comment

There’s a conditional command to check if a browser is not IE.

You can use magic HTML comment to do that:

<!--[if !(IE)]><!-->
<div class="foo">Content that is not shown to IE users.</div>
<!--<![endif]-->