码迷,mamicode.com
首页 > 其他好文 > 详细

两种解决IE6不支持固定定位的方法

时间:2014-08-05 13:46:49      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   blog   os   io   ar   div   html   htm   

有两种让IE6支持position:fixed
1.用CSS执行表达式

*{margin:0;padding:0;}
* html,* html body{ 
	background-image:url(about:blank);
 	background-attachment:fixed;
}
* html .fixed{
    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)));
}      
.fixed{
    position:fixed;
    bottom:0px;
    top:auto;
}   

 2.让body保持其原有高度,让html只有一个窗口那么高

*{margin:0;padding:0}
*html{overflow:hidden;}
*html body{height:100%;overflow:auto;}        
.fixed{
    position:fixed; _position:absolute;
    left:0;
    bottom:0;
}

 

两种解决IE6不支持固定定位的方法,布布扣,bubuko.com

两种解决IE6不支持固定定位的方法

标签:style   blog   os   io   ar   div   html   htm   

原文地址:http://www.cnblogs.com/sntetwt/p/3891978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!