修复ie6-position:fixed

来源:互联网 发布:诺信威视软件下载 编辑:程序博客网 时间:2024/06/03 00:31

相信很多程序员在开发的过程中会遇到ie6不支持position:fixed属性的问题,下面的代码可解决该问题。

方法:给指定的dom元素添加上该样式即可。

例如<div id="base_wrapper"></div>

#base_wrapper{ float:left; left:0px; padding-left:20px; clear:both; position:fixed;z-index:9999999;bottom:0;width:100%;_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))); text-align:left;}