CSS教程:兼容ie6,ie7,ff的fixed分享


效果地址:


[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

出处:https://xiebiji.com/2009/09/fixed

为了兼容ie6(万恶的东西),用的是expression的方法

在页头加入:

<style type="text/css">  body{  	background-image:url(about:blank); background-attachment:fixed;/*必要,防抖动*/  }  .head,.foot{  	position:fixed !important;/*ie7 ff*/  	position:absolute;   	z-index:21;   	background:#999;  	height:30px;  	width:500px;  }  .foot{  	bottom:0 !important;/*ie7 ff*/  }  .main{  	height:2000px;  }  </style>  <!--[if IE 6]>  <style type="text/css">  /*ie6 fix顶端元素*/      .head{      top:expression(eval(document.documentElement.scrollTop));  }  /*ie6 fix底端元素*/  .foot{  	top: expression(eval((document.compatMode&&document.compatMode=="CSS1Compat")?documentElement.scrollTop+documentElement.clientHeight-this.clientHeight-1:document.body.scrollTop+document.body.clientHeight-this.clientHeight-1));  }  </style>  <![endif]-->

HTML:

—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>

<body>      <div class="head">      	header      </div>      <div class="main">      	<p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p><p>main </p>      </div>      <div class="foot">      	foot      </div>  </body>



本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/htmltutorial/73206.html

(0)
上一篇 2020年4月19日
下一篇 2020年4月19日

精彩推荐