作者:terence025847 | 来源:互联网 | 2013-07-18 14:23
IE6不支持fixed属性,记录一下解决方法。
想让我的一个DIV块浮动在右上角的地方,不随滚屏而变化。
id="portamento_container" style="width: 200px;">This is my text!
下面是css样式写法
/* 除IE6浏览器的通用方法 */ #portamento_container{position:fixed;right:0;top:0;background:green;width:200px;height:20px;} /* IE6浏览器的特有方法 */ * html #portamento_container{position:absolute;right:expression(eval(document.documentElement.scrollLeft+10));top:expression(eval(document.documentElement.scrollTop+10))} /*防止抖动*/ * html,* html body{background-image:url(about:blank);background-attachment:fixed}