IE中“浏览器模式”和“文档模式”的区别

1浏览器模式:影响浏览器的版本及IE的条件注释

<!–[if IE 7]>
<style type=”text/css”>
.content{color:#F00;}
</style>
<![endif]–>

2文档模式:影响IE的排版引擎和对DOM的渲染

<style type=”text/css”>
.content{*color:#F00;}
</style>

IE7一下都为红色字体

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" > 改变浏览器的渲染方式,即改变文档模式

原文地址:https://www.cnblogs.com/everyone/p/3110076.html