IE条件CSS包括

发布于 2024-09-15 06:23:03 字数 353 浏览 11 评论 0原文

您好...

我的 Internet Explorer 条件注释有问题...

我使用此条件

<!--[if lte IE8]>
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/>
<![endif]-->

问题在于 << IE8.0 我在任何其他输出之前得到输出 ...为什么?!?在 Firefox 中,它正常呈现(afkors)。

Hy there...

I have a problem with Internet Explorer conditional comments...

I use this condition

<!--[if lte IE8]>
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/>
<![endif]-->

The problem is that in < IE8.0 i get output <!--[if lte IE8]><![endif]--> before any other output... Why?!? In Firefox it is rendered normaly (afkors).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

东走西顾 2024-09-22 06:23:03

我相信您需要做的就是在 IE8 之间添加一个空格,所以它看起来像这样:

<!--[if lte IE 8]> 
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/> 
<![endif]--> 

I believe all you need to do is add a space between IE and 8, so it looks like this:

<!--[if lte IE 8]> 
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/> 
<![endif]--> 
绅士风度i 2024-09-22 06:23:03
<!--[if IE 6]>
Special instructions for IE 6 here
<![endif]-->

在上面的示例中,IE 和 6 之间有一个空格。对 IE 和 8 执行相同的操作:

<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/>
<![endif]-->
<!--[if IE 6]>
Special instructions for IE 6 here
<![endif]-->

In the example above, theres a space between IE and 6. Just do the same for IE and 8:

<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="http://www.bvp.hr/Static/Style/IEFix6.css"/>
<![endif]-->
空心↖ 2024-09-22 06:23:03

请参阅上面加上代码顶部的注释将强制 IE 进入 Quirks 模式,这将使页面的渲染效果很差。删除这些评论:

<!-- UUIDM component start --> 
<!-- Page generated by UUIDM component - part of WebSuite application platform. Copyright (C) Determinanta. All rights reserved. --> 

See above plus the comments at the top of your code will force IE into Quirks Mode which will make the rendering of the page poor. Remove these comments:

<!-- UUIDM component start --> 
<!-- Page generated by UUIDM component - part of WebSuite application platform. Copyright (C) Determinanta. All rights reserved. --> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文