天天看点

坑爹的ie6--解决ie6下qq浮动窗口不兼容问题

 今天做项目最郁闷的就是qq浮动窗口在ie6下无法正常显示,可恶的是客户的浏览器还就是ie6的!!!悲催莫过于此,查了相关资料,ie下 position的fixed属性值不起作用,解决办法是在原来样式基础上增加如下属性:

        _position:absolute;

        _bottom:auto;

        _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));

来使ie6识别浮动的相关属性

本文转自 tongling_zzu 51CTO博客,原文链接:http://blog.51cto.com/tongling/1143659

继续阅读