如果div结构是下面这样
那么可以这样定义css:
.container {width:960px; height:100%; overflow:hidden; margin:0 auto;}
.left {height:100%; width:200px; overflow:hidden; padding-bottom:9999px; margin-bottom:-9999px; float:left; display:inline;}
.right {width:750px; float:right; height:auto;}
啰啰嗦嗦一大堆大码,实际上起到核心作用的是height:100%; overflow:hidden; padding-bottom:9999px; margin-bottom:-9999px;这一部分,这样就可以让div填充满整个父框架了~~