ie
使用固定的渲染模式:
代码如下:
<metahttp-equiv="x-ua-compatible"content="ie=8"><!--以ie8模式渲染-->
<metahttp-equiv="x-ua-compatible"content="ie=7"><!--以ie7模式渲染-->
还
有一种情况,在ie8下只有不使用兼容模式页面才能显示正常,但是如果设定为ie8的模式,在ie9中却会导致css3失效。看来,需要针对
ie8、ie9
分别
禁用兼容模式。怎么办呢?可以在后台判断浏览器版本,如果是ie8就输出content="ie=8",如果是ie9就输出
content="ie=9"。其实还可以单纯通过html来实现的,html代码如下:
<metahttp-equiv="x-ua-compatible"content="ie=9
ie=8
ie=7
ie=edge">