标签:style io os sp on html ef bs htm
处理方式
<!--[if IE 6]>
<style type="text/css">
html{overflow:hidden}
body{height:100%;overflow:auto}
</style>
<![endif]-->
但是会让页面上的relative 和 position 定位都变成 fixed 定位
用expression 可以让ie实现页面固定,但是是设置absolute实现,会出现抖动,通过 设置 background-image 解决
* html,* html body{background-image:url(about:blank); background-attachment:fixed}
* html .box{
position:absolute;left:expression(eval(document.documentElement.scrollLeft+100));
top:expression(eval(document.documentElement.scrollTop+100))
标签:style io os sp on html ef bs htm
原文地址:http://www.cnblogs.com/bigdesign/p/4037226.html