zoukankan      html  css  js  c++  java
  • IE 6 Fixed 解决方案.

    ie6对postion:fixed的完美解决方案
    今天去一老外站看到了这他站上的十分平滑但却没有js,好奇,原来。。巧妙啊,分享下,相对而言比较节省资源。但效果好,使用方便,兼顾w3c。哈哈
    <!-- compliance patch for microsoft browsers -->
    <!--[if lt IE 7]><link rel="stylesheet" href="ie-stuff.css" type="text/css" media="screen"/><![endif]-->
    ie-stuff.css


    复制代码 代码如下:
    #footer {
    position: absolute;
    bottom: auto;
    clear: both;
    top:expression(eval(document.compatMode &&
    document.compatMode=='CSS1Compat') ?
    documentElement.scrollTop
    +(documentElement.clientHeight-this.clientHeight) - 1
    : document.body.scrollTop
    +(document.body.clientHeight-this.clientHeight) - 1);
    }
    详细出处参考:http://www.jb51.net/article/26681.htm

  • 相关阅读:
    简单状态机
    c语言状态机
    存储公司
    正确跑步
    好好做自己能做的
    I2C学习
    es6 generator函数
    es6 for of 循环
    es6 proxy代理
    es6 Symbol类型
  • 原文地址:https://www.cnblogs.com/fat_li/p/2185245.html
Copyright © 2011-2022 走看看