解决IE不支持position:fixed问题

#box {

  1. /* 非IE6浏览器使用固定元素 */
  2. position:fixed;
  3. top:0;
  4. left:0;
  5. /* IE6改为绝对定位,并通过css表达式根据滚动位置更改top的值 */
  6. _position: absolute;
  7. _top: expression(eval(document.documentElement.scrollTop));

} document.documentElement.scrollTop是滚动条偏移的值,可以根据这个来设置位置,比如document.documentElement.scrollTop+200或者使用margin定位

上一篇:Linux install sogou input method


下一篇:ELK Stack企业日志平台文档