0

我有一个标题

<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 9]>
<html class="ie ie9" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 10]>
<html class="ie ie10" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) & !(IE 8) & !(IE 9) & !(IE 10)]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->

在我的虚拟框中,我运行了一个 IE10 版本。

.ie10 body {
 background:blue;
}

问题是我必须将文档粘贴到 ie9 中才能获取样式。为什么这不像我认为的那样工作。

在此处输入图像描述

4

1 回答 1

0

从 IE10 开始,不再支持条件注释。

你需要想出一种不同的方法来完成你所追求的结果。

希望这可以帮助...

——兰斯

于 2015-11-19T23:27:01.670 回答