我正在开发为在 IE7 上运行而构建的网页,现在我正在升级页面以默认在 IE11 Edge 模式下运行。
我在页面中所做的是我添加了
<!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 开发人员模式下的仿真面板都会显示它在 IE7 中的渲染!
我错过了什么?