首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > 跨浏览器开发 >

为何这个没效果

2013-01-08 
为什么这个没效果?headstylebody {height:1000px}#footer {position:fixedleft:0bottom:0height:3

为什么这个没效果?

<head>
<style>
body {
height:1000px;
}
#footer {
position:fixed;
left:0;
bottom:0;
height:30p;
width:100%;
background:#999;
_position: absolute;
_top: expression( document.documentElement.clientHeight + ( document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) - this.offsetHeight )
}
</style>
</head>
<body>
<div id="footer">23</div>
</body>

[解决办法]
楼主説的什么效果?


层随滚动条移动?


需要在DTD格式运行

<!doctype html><head>
<style>
body {
height:1000px;
}
#footer {
position:fixed;
left:0;
bottom:0;
height:30px;
width:100%;
background:#999;
_position: absolute;
_top: expression( document.documentElement.clientHeight + ( document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) - this.offsetHeight )
}
</style>
</head>
<body>
<div id="footer">23</div>
</body>

热点排行