IE11边缘模式默认不起作用(包括元标记和doctype)

时间:2015-02-27 18:34:52

标签: internet-explorer-11 ie11-developer-tools

我正在开发用于在IE7上运行的网页,现在我正在升级页面以默认在IE11边缘模式下运行。

我在页面中所做的是我添加了

<!DOCTYPE html>

我还添加了这个

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>Test Image Request</title>
    <style type="text/css">
        .auto-expand{overflow-y:visible}
    </style>
</head>

现在每当我打开页面时,IE11 Developer模式下的Emulation Panel都会在IE7中显示它的呈现!

我错过了什么?

1 个答案:

答案 0 :(得分:0)

解决!在<script>之前有<head>,在<head>之后移动它,现在一切正常。