我想知道,在使用条件注释时,正确的方法是什么(注意结束 div 标签)
这样,两个条件 div 都有一个关闭 div
<!--[if IE]>
<div id="IEdiv">
<![endif]-->
<!--[if !IE]><!-->
<div id="AllOtherDiv">
<!--<![endif]-->
<div>The Content</div>
</div>
或者
这样,每个条件 div 都有一个关闭 div,并重复相同的 html
<!--[if IE]>
<div id="IEdiv">
<div>The Content</div>
</div>
<![endif]-->
<!--[if !IE]><!-->
<div id="AllOtherDiv">
<!--<![endif]-->
<div>The Content</div>
</div>
注意:您可能想知道如果内部 HTML 相同,为什么我不只使用条件样式表,但我在条件 div 上使用内联样式(我必须)并且 IE 的内联样式不同(这是必要的,因为 IE 很烂所以对它的 css 支持不好......)
谢谢