<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body,div{margin:0;}
.top{position: fixed;top:0;left:0;width:100%;height:50px;background-color:blue;}
.left{top:50px;width:180px;float:left;background-color:red;}
.main{margin-left:180px;background:#0f0;margin-bottom:20px;background-color:green;}
.bottom{position:fixed;left:0px;bottom:0px;width:100%;height:20px;background-color:yellow;clear:both;}
</style>
</head>
<body>
<div class="top">这时是头</div>
<div class="left">
左边的导航
<br />1
<br />
<br />
<br />
<br />2
<br />
<br />
<br />
<br />
<br />3
<br />
<br />
<br />
<br />
<br />4
<br />
<br />
<br />
<br />5
<br />
<br />
<br />
<br />
<br />
<br />6
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />7
</div>
<div class="main">
<br />1
<br />
<br />
<br />
<br />2
<br />
<br />
<br />
<br />
<br />3
<br />
<br />
<br />
<br />
<br />4
<br />
<br />
<br />
<br />5
<br />
<br />
<br />
<br />
<br />
<br />6
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />7
</div>
<div class="bottom">
底部
</div>
</body>
</html>
这就是你要的效果吧,不过在IE6下运行不行, 在IE7及firefox下运行正常.