gpt4 book ai didi

html - css 条件格式

转载 作者:太空宇宙 更新时间:2023-11-04 13:58:03 25 4
gpt4 key购买 nike

我有以下代码来检查用户是否使用 IE7...并且它需要覆盖 .web_info 样式。如果不是 IE7,它使用默认样式,如果它根本不是 IE,它将使用 ff_styles.css。这似乎不起作用。

<link rel="stylesheet" type="text/css" href="../styles.css">


<![if !IE]>
<link rel="stylesheet" type="text/css" href="../ff_styles.css">
<![endif]>

<![if IE 7]>
<style type="text/css">
.web_info
{
left: 450px;
top: 200px;
width: 300px;
height: 60px;
}
</style>
<![endif]>

有什么建议吗?谢谢

最佳答案

这不应该是这样吗

<!--[if IE 7]>
..
<![endif]-->

<!--[if !IE]>
...
<![endif]-->

注意

<!--[if !IE]>

永远不会产生 true,因为这些条件注释只会被 IE 解释。

关于html - css 条件格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/992871/

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