IE6支持position:fixed完美解决方法_经验交流
程序员文章站
2022-03-31 10:54:32
...
今天去一老外站看到了这他站上的十分平滑但却没有js,好奇,原来。。巧妙啊,分享下,相对而言比较节省资源。但效果好,使用方便,兼顾w3c。哈哈
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);
}
复制代码 代码如下:
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);
}
推荐阅读
-
IE6支持position:fixed完美解决方法
-
ie6,ie7,ie8完美支持position:fixed的终极解决方案
-
IE6支持position:fixed完美解决方法
-
iphone safari不支持position fixed的解决方法_javascript技巧
-
iphone safari不支持position fixed的解决方法_javascript技巧
-
ie6,ie7,ie8完美支持position:fixed的终极解决方案
-
让IE6支持position:fixed的方法,CSS expression与JavaScript eval讲解_html/css_WEB-ITnose
-
IE6不支持min-height或max-width等完美解决方法_html/css_WEB-ITnose
-
IE6不支持min-height或max-width等完美解决方法_html/css_WEB-ITnose
-
IE6不支持min-height或max-width等完美解决方法_html/css_WEB-ITnose