IE6不兼容postion:fixed已解决

将要设置postion:fixed的元素的css中添加以下代码:

//如果想要是头部悬停,则以下代码即可。

.customService{
        position: fixed;bottom: 20px;z-index: 999;
        _position: absolute;
        _bottom: 20px;
        _top:expression(eval(document.documentElement.scrollTop));

}

//如果想要是底部悬停,则更换一段代码即可。

.customService{
        position: fixed;bottom: 20px;z-index: 999;
        _position: absolute;
        _bottom: 20px;
        _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));

}

posted @ 2017-05-04 11:08  小短腿奔跑吧  阅读(111)  评论(0编辑  收藏  举报