IE6支持position:fixed最完美方案[z]

From : http://onewww.net/blog/article.asp?id=96

参考   :http://dancewithnet.com/2007/04/19/cross-brower-css-fixed-position/#header

 

IE7已经支持position:fixed了,而我们的IE6呢?还继续使用js事件?消耗资源,破坏结构,画面闪耀。
今天去一老外站看到了这他站上的十分平滑但却没有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:e­xpression(eval(document.compatMode &&
        document.compatMode=='CSS1Compat') ?
        documentElement.scrollTop
        +(documentElement.clientHeight-this.clientHeight) - 1
        : document.body.scrollTop
        +(document.body.clientHeight-this.clientHeight) - 1);
}


效果 http://bassistance.de/jquery-plugins/jquery-plugin-validation/

你可能感兴趣的:(jquery,css,IE,asp.net,asp)