csshack 解决ie6下position:fixed失效的问题

块上的类 

.fixed
{
position:fixed;
top:0;
_position:absolute;
_top:expression(eval(document.body.scrollTop||document.documentElement.scrollTop+0));
z-index:20;
100%;

}

<div class="fixed">

</div>

在body 上添加 <body style="background-image:url(about:blank);background-attachment:fixed">

在div下下html <div style=" margin-top:170px;"> 有一个间距需要 根据fixed的块的高度

原文地址:https://www.cnblogs.com/wangzp/p/3225468.html