<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
改为
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<body>
<div style="height:80px">top</div>
<div id="container" style="height:100%">center</div>
<div style="height:60px">bottom</div>
</body>
<body>
<div style="height:80px;position:absolute; top:0;">top</div>
<div id="container“>center</div>
<div style="height:60px;position:absolute; bottom:0;">bottom</div>
</body>
看看行不行
某些低版本浏览器对height属性漠视
Code
<html>
<head><title></title></head>
<body>
<div style="height:80px">top</div>
<div id="container" style="height:100%">center</div>
<div style="height:60px;position:absolute; bottom:0px;">bottom</div>
</body>
</html>
怎么解决的啊?? 想知道哦???