网页端兼容ie浏览器,强制用户以最高版本的ie进行页面渲染

1.针对浏览器,兼容不同ie版本写法

//IE9以及低于IE9版本 :
<!--[if IE]>
  <link rel="stylesheet" type="text/css" href="index.css" />
<![endif]-->

//IE10或IE11:
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
}

2.强制用户以指定ie版本渲染页面

<meta http-equiv="x-ua-compatible" content="IE=11" >
		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

注解强制指定版本注解https://blog.csdn.net/yimuqing123/article/details/53012549

3.ie兼容写法

IE浏览器兼容方法+几种网页布局 - 掘金 (juejin.cn)icon-default.png?t=N4P3https://juejin.cn/post/7007801910728065038

猜你喜欢

转载自blog.csdn.net/weixin_53339757/article/details/131171577