IE的标准模式和兼容模式

IE的各种模式

修改html

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

修改web.config

  
 <configuration>
   <system.webServer>
    <httpProtocol>
       <customHeaders>
      <clear />
        <add name="X-UA-Compatible" value="IE=EmulateIE7" />
      customHeaders>
     httpProtocol>
  <system.webServer>
 configuration> ```

## 修改IIS的HTTP响应头
![修改iis](https://img-blog.csdnimg.cn/66d41e9fdf704056ae7b3382aba8c278.png)


你可能感兴趣的:(html/css,javascript,前端)