<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>兼容ie6的底部固定DIV層</title>
<style type="text/css">
<!--
.box {
z-index:999;
background-color: #09C;
height: 60px;
width: 100%;
position: fixed;
bottom: 0px;
left: auto;
right: auto;
line-height: 60px;
text-align: center;
_POSITION: absolute;/*兼容IE6*/
_TOP: expression(offsetParent.scrollTop+document.documentElement.clientHeight-this.offsetHeight);/*兼容IE6*/
}
.box a{color: #FFF;}
-->
</style>
</head>
<body>
<div style="height:2000px;">固定的樣式在ie7之后就開始支持position: fixed;了 但是ie6不支持,那么就需要用到CSS的expression屬性了,注意expression是一個非常占用系統資源的方法,估計ie6滅亡的時候它也會徹底消失了吧。<br />
<br />
往下看,看頁面的最下面</div>
<div class="box"><a href="
http://www.www.yeewaa.com" target="_blank">我固定在頁面底部,拖動瀏覽器的滾動條試試 = =>></a></div>
</body>
</html>
--------------------------全文完----------------------------