IE 9没有考虑为IE 8浏览器定义的元标记

时间:2012-11-14 12:33:21

标签: internet-explorer internet-explorer-8 internet-explorer-9 meta

我正在使用Internet Explorer 9浏览器,我的网页在IE 8下运行良好的资源管理器未对齐。我在开发工具下保持浏览器模式和文档模式到IE 9标准。下面是我在文件中包含的元标记,但页面仍然未对齐。我试图将开发工具下的文档类型更改为IE 8标准,而不是IE 9标准。我想页面应该模仿IE 9标准的属性。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Untitled Document</title>
    <meta http-equiv="X-UA-Compatible" content="IE=9" />
</head>

1 个答案:

答案 0 :(得分:0)

您需要在元标记中指定工作标准。

将元标记更改为

<meta http-equiv="X-UA-Compatible" content="IE=8" />

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />

或(用于通过浏览器本身查找工作标准)

<meta http-equiv="X-UA-Compatible" content="IE=Edge" />