css固定定位兼容ie6

大家都知道fixedIE6不支持,一下是我以前网上找的常用到的两种,大家可以根据需要进行修改数值:

右侧底部定位

fixed!important;
bottom:0px;
right:0px;
_position:absolute;_top:expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight);
z-index:105;

 

距离底部60像素
position:fixed!important;
bottom:60px;
right:0px;
_position:absolute;_top:expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight-60);
z-index:103

posted @ 2014-06-27 10:00  vzone  阅读(127)  评论(0)    收藏  举报