放在前面是不是很糟糕?内的元素标签?

发布于 2025-01-01 16:26:01 字数 320 浏览 0 评论 0原文

我想使用条件注释使 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

五里雾 2025-01-08 16:26:01
身边 2025-01-08 16:26:01

最好的方法是保持文档正文中的内容不变,但为 ie 应用隐藏 div 的样式表。

和 css

    #browsernotice {
       display:none;
}

并用条件语句调用它

<!--[if lt IE 7]>
<link href="ie7.css" type="text/css" rel="stylesheet">
<![endif]-->

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

    #browsernotice {
       display:none;
}

And call it with a conditional statement

<!--[if lt IE 7]>
<link href="ie7.css" type="text/css" rel="stylesheet">
<![endif]-->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文