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));}
  • 相关阅读:
    ES6入门详解(二) 解构赋值
    python 入门简述
    webpack4x 简述
    ES6入门详解(一) let const
    关于HTML的简述
    按照in条件排序
    Oracle 优化效率
    input输入框校验
    <a>标签操作
    svn安装
  • 原文地址:https://www.cnblogs.com/vonly/p/3054732.html
Copyright © 2011-2022 走看看