解决IE6不支持fixed

/* IE6 是不支持position:fixed的,解决如下*/
.right-bar{ _position:absolute;_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
/* 下拉页面的时候IE6是抖动的,解决如下*/
body{ _background:url(about:blank) fixed;}

原文地址:https://www.cnblogs.com/jiangtuzi/p/3628773.html