zoukankan      html  css  js  c++  java
  • IE6 css fixed

     1 .fixed-top{position:fixed;bottom:auto;top:0px;}
     2 .fixed-bottom{position:fixed;bottom:0px;top:auto;}
     3 .fixed-left{position:fixed;right:auto;left:0px;}
     4 .fixed-right{position:fixed;right:0px;left:auto;}
     5 /* IE6 */
     6 * html,* html body{background-image:url(about:blank);background-attachment:fixed;}
     7 * html .fixed-top{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));}
     8 * html .fixed-right{position:absolute;right:auto;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));}
     9 * html .fixed-bottom{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
    10 * html .fixed-left{position:absolute;right:auto;left:expression(eval(document.documentElement.scrollLeft));}
  • 相关阅读:
    JS PopupAlert
    JS Navigator
    JS History
    JS Location
    JS Screen
    JS Window
    PTZView
    使用JmDNS发现设备
    Android开发调用webservice方式之一
    解决webservice发布报错Service Unavailable HTTP Error 503. The service is unavailable.
  • 原文地址:https://www.cnblogs.com/vonly/p/3054728.html
Copyright © 2011-2022 走看看