当前位置: 代码迷 >> Web前端 >> 调整IE7与其他IE版本的兼容
  详细解决方案

调整IE7与其他IE版本的兼容

热度:103   发布时间:2013-08-25 10:49:56.0
整合IE7与其他IE版本的兼容
<!--[if lte IE 7]>
<div class="content7">
<![endif]-->
/*里面套内容*/
<div class="content">
   sadasdasd
</div>

<!--[if lte IE 7]>
</div>
<![endif]-->


然后在css文件中将content和content7的样式各写一遍,其中content7的样式就是在IE7 下的样式(如果在IE7下的效果不满意,直接调content7就可以了),content样式就是在IE8、IE9和火狐下的样式(正常写就行了)。
  相关解决方案