gpt4 book ai didi

html - 条件 CSS 区分 IE6 到 IE7

转载 作者:太空宇宙 更新时间:2023-11-03 20:24:33 26 4
gpt4 key购买 nike

我想声明一个不同于 ie6 和 ie7 的样式,但我在 CSS 中的情况被 IE7 识别为 IE6。我使用 XP 和 explorer 7。这是我使用的代码:

<!--[if !IE]>

#mainDiv{text-align:-moz-center;}

#skyBanner {top:0px;left:0px; position:fixed;visibility:hidden;}

<![endif]-->

<!--[if lt IE 7]>

body > #skyBanner { position: fixed;}

#skyBanner {position:absolute;visibility:hidden;

left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );

top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );

}

<![endif]-->

<!--[if IE 7]>

#skyBanner {position:fixed;visibility:hidden;

}
<![endif]-->

我的错误是什么?

最佳答案

您不能在 CSS 中使用条件注释。仅在 HTML 中。因此,您必须将不同浏览器的声明放入不同的文件中,并有条件地注释几个 <link>。给他们。

所以更多的东西是

<html>
<head>
<!--[if !IE]>
<link rel="stylesheet" type="text/css" href="style_non_ie.css">
<![endif]-->
...
</head>
</html>

关于html - 条件 CSS 区分 IE6 到 IE7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1115767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com