代码改变世界

IE6实现fixed定位

2010-02-13 03:25  fdafda  阅读(232)  评论(0)    收藏  举报

闲来无事,研究下了下淘宝首页,发现右下方的浮动提示,在IE6下毫无闪动,挖了下CSS代码:

* html{background:url(xxx.png) no-repeat -999em -999em fixed;} /*如果去掉背景图,浮动层会在IE6下闪动*/
* html #logis-tips{position:absolute;top:expression(documentElement.scrollTop+documentElement.clientHeight-this.clientHeight-5)}
#logis-tips {width:100px; height:100px; background-color:red}

 

demo预览(只有ie6 hack):

http://fanlibrary.googlecode.com/svn/trunk/lab/ie6_fixed_layer.html