标签:style blog io color os 使用 sp on div
*html {
/*只有IE6支持 解决IE6抖动问题*/
background-image: url(about:blank); /*使用空背景*/
background-attachment: fixed; /*固定背景*/
}
#top {
/*非IE6 直接用固定定位*/
position: fixed;
top: 0;
left: 0;
/*IE6 改为绝对定位 并通过css表达式根据滚动位置更改top的值*/
_position: absolute;
_top: expression(eval(document.documentElement.scrollTop));
}
标签:style blog io color os 使用 sp on div
原文地址:http://www.cnblogs.com/lvmx/p/4118551.html