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

position:fixed部分版本的浏览器不支持

时间:2014-09-03 16:15:46      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:os   io   ar   sp   amp   on   c   res   bs   

ie6-ie8浏览器不支持这个属性

.fixed{
        position:fixed; /*对于火狐等其他浏览器需要设置的*/
        top:700px;  /*同上*/
        width:30px;
        height:30px;
        cursor:pointer;
        display:none;
 } 
 .ie{  
       _position: absolute; 
       _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);
}

position:fixed部分版本的浏览器不支持

标签:os   io   ar   sp   amp   on   c   res   bs   

原文地址:http://www.cnblogs.com/jsingleegg/p/3953642.html

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