IE6 position:fixed bug hack方式

/* IE6浏览器的特有方法 */
/* 修正IE6振动bug */
* html,* html body{background-image:url(about:blank);background-attachment:fixed}
* html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft));top:expression(eval(document.documentElement.scrollTop))}

位置可以通过表达式中eval 中的值进行加减修改
原文地址:https://www.cnblogs.com/hongchenok/p/3713090.html