在 stylsheet.c-6ren">
gpt4 book ai didi

php - 条件类 drupal 7 和 IE9

转载 作者:行者123 更新时间:2023-11-28 13:02:29 25 4
gpt4 key购买 nike

我希望使用条件类来检测是否正在使用 IE9,如果是,则相应地将 css 应用于类导航。

我在 html.tpl.php 文件中添加了以下行

<!--[if IE 9]><html <?php print $html_attributes; ?> class="ie9nav"><![endif]-->

在 stylsheet.css 文件中,当前类是(有效)。

#navigation {background-image: blah.jpg}

我加了

#navigation .ie9nav {background-color: fff;}

但它不起作用。我做错了什么?

最佳答案

你为什么不直接用 php 本身试试呢..

这是可以方便使用的代码片段..

if(preg_match('/MSIE/i',$_SERVER['HTTP_USER_AGENT']))
{
echo '<html class="ieclass">';
}
else
{
echo '<html class="none-ie">;
}

希望对你有帮助..

关于php - 条件类 drupal 7 和 IE9,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16081636/

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