IE6下position:fixed;兼容

*html{
  background-image:url(about:blank);
  background-attachment:fixed;
}/*解决抖动问题*/ .backto-top{
  35px;
  height:35px;
  overflow: hidden;
  z-index:1;
  position:fixed;
  bottom:0;
  margin-left:964px;
  *+position:absolute;
  *+top:expression((document.compatMode?documentElement.scrollTop:document.body.scrollTop) + (document.compatMode?documentElement.offsetHeight:document.body.offsetHei  ght) - 660 + 'px');
}/*660是ie6下距离top的位置*/
原文地址:https://www.cnblogs.com/afuge/p/3154822.html