IE6下的纯CSS完美position:fixed实现

在 Firefox等非ie浏览器支持 css: position:fixed 来固定浮动层,但是在 ie 下通常只能用 javascript来固定,效果不好。

现在给出一个纯 css 的 IE fixed 完美解决方案:(支持ie5.5+,firefox,opera,chrome等主流浏览器)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>

<style type="text/css">
	html,body{margin:0px;height:100%;overflow:hidden;font-size:12px;}
	
	/* the core */
	.wrapper{
		position:relative;
		width:100%;
		height:100%;
		overflow:auto;	
	}
	.fixed-box{
		 position:fixed;
	}
	* html .fixed-box{
		position:absolute;
		z-index:100;	
	}
	
      /* the sample */
	#topBox, #leftBox, #bottomBox{
		 padding:5px;
		 border:1px solid #aaa;
		 background-color:#fee;
		 font-size:12px;
	}
	
	#topBox{
		 width:100%;
		 left:0px;
		 top:0px;	
	}
	
	#leftBox{
		width:150px;
		left:50%;
		top:180px;
		margin:0 0 0 -370px;	
	}
	
	#bottomBox{
		width:100%;
		left:0px;
		bottom:0px;	
	}
	
</style>

</head>

<body>
	<div class="wrapper">
		  
		  <div style="height:2000px;">
		  	 <p>一段内容</p>
		  	  <p>一段内容</p>	
		  	   <p>一段内容</p>	
		  	    <p>一段内容</p>
		  	   <p>一段内容</p>
		  	  <p>一段内容</p>	
		  	  <p>一段内容</p>	
		  	  <p>一段内容</p>	
		  	  <p>一段内容</p>	
		  	  <p>一段内容</p>	
		  	   <p>一段内容</p>	
		  	    <p>一段内容</p>	
		  	    <p>一段内容</p>	
		  	    <p>一段内容</p>		
		  	    <p>一段内容</p>	
		  	    <p>一段内容</p>	
		  	    <p>一段内容</p>	
		  </div>
		 	
	</div>
	
	<div id="topBox" class="fixed-box">
		<p><b>Top Fixed Position</b></p>
		 <p>
		 	   The ie6 "fixed" position is the same to Firefox etc. position:fixed 。	
		 </p>	
	</div>
	
	<div id="leftBox" class="fixed-box">
		 <p><b>Left Fixed Position</b></p>
		 <p>
		 	  The ie6 "fixed" position is the same to Firefox etc. position:fixed 。	
		 </p>	
	</div>
	
	<div id="bottomBox" class="fixed-box">
		 <p><b>Bottom Fixed Position</b></p>
		 <p>
		 	   The ie6 "fixed" position is the same to Firefox etc. position:fixed 。	
		 </p>	
	</div>

</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值