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

将div固定在页面某处 兼容ie6

时间:2014-04-29 22:29:41      阅读:523      评论:0      收藏:0      [点我收藏+]

标签:com   blog   class   style   div   code   log   ext   width   string   c   

一、样式:

1
2
3
4
5
6
7
8
<style>
body,div{ margin:0; padding:0}
.wrap{width:1000px; margin:0 auto}
.info{width:1000px; height:40px;background:#f2f2f2; text-align:center; font:normal 14px/40px ‘Microsoft YaHei‘; color:#333}
*html{background-image:url(about:blank);background-attachment:fixed}/*ie6下去抖动*/
.div-pos-top{position:fixed;top:0;_position:absolute;_top:expression(eval(document.documentElement.scrollTop));z-index:2000}/*居于页面顶部*/
.div-pos-bottom{position:fixed;bottom:0; _position:absolute;_top:expression(documentElement.scrollTop+documentElement.clientHeight - this.offsetHeight-0)}<br>/*居于页面底部*/
</style>

 二、html代码:

1
2
3
4
<div class="wrap">
      <div class="div-pos-top"><div class="info">我固定在页面顶部</div></div>
      <div class="div-pos-bottom"><div class="info">我固定在页面底部</div></div>
 </div>

 

将div固定在页面某处 兼容ie6,码迷,mamicode.com

将div固定在页面某处 兼容ie6

标签:com   blog   class   style   div   code   log   ext   width   string   c   

原文地址:http://www.cnblogs.com/honeyHHX/p/3697017.html

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