把放在前面是不是很糟糕?内的元素标签?
我想使用条件注释使 DIV 仅出现在 IE7 或更早版本的浏览器中,如下所示:
<!--[if lt IE 7]>
<div id="browsernotice">
<p>You are using IE7 or less</p>
</div>
<![endif]-->
据我了解,条件注释仅在标头中起作用。
这很糟糕吗?
我应该使用条件注释来插入一个样式表来创建不可见的 DIV visibility:visible
吗?
I want to use conditional comments to make a DIV appear ONLY in browsers with IE7 or older, like this:
<!--[if lt IE 7]>
<div id="browsernotice">
<p>You are using IE7 or less</p>
</div>
<![endif]-->
As far as I understand, conditional comments only work in the header.
Is this bad?
Should I rather use conditional comments to instert a stylesheet that makes an invisible DIV visibility:visible
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不好在您的
中。这是无效的。
<div>
in your<head>
. It's not valid.<body>
.最好的方法是保持文档正文中的内容不变,但为 ie 应用隐藏 div 的样式表。
和 css
并用条件语句调用它
The best way is to keep the content as is in the document body but instead apply a style sheet for ie that hides the div.
with css
And call it with a conditional statement