.top{width:100%;height:100px; background:#9CF;}
.main{height:300px;width:100%;background:blue;}
.right{height:300px;width:100%;background:red;position:absolute;left:210px;}
.left{width:200px;height:300px;background:yellow;position:absolute;left:0;}
.foot{width:100%;height:100px; background:#9CF;}
.main{height:300px;width:100%;background:blue;}
.right{height:300px;width:100%;background:red;position:absolute;left:210px;}
.left{width:200px;height:300px;background:yellow;position:absolute;left:0;}
.foot{width:100%;height:100px; background:#9CF;}
body{ margin:0; padding:0; font-size:30px;}
.top{height:100px; width:100%;}
.main{height:600px; width:100%;}
.left{height:600px; width:200px; float:left;}
.right{height:600px; width:100%; position:absolute; margin:0 0 0 210px;}/*margin可以改为left:210px;*/
.foot{height:50px; width:100%;}
.top{height:100px; width:100%;}
.main{height:600px; width:100%;}
.left{height:600px; width:200px; float:left;}
.right{height:600px; width:100%; position:absolute; margin:0 0 0 210px;}/*margin可以改为left:210px;*/
.foot{height:50px; width:100%;}
这里使用浮动更简单,计算right可以使用calc
.top{background:#ccc;height:100px;}
.main{background:red;height:400px;}
.left{background:#0000fe;height:400px;float:left;width:200px;}
.right{background:#9acc99;height:400px;float:right;width:calc(100% - 210px);}
.foot{background:#ff6634;height:50px;}
.top{background:#ccc;height:100px;}
.main{background:red;height:400px;}
.left{background:#0000fe;height:400px;float:left;width:200px;}
.right{background:#9acc99;height:400px;float:right;width:calc(100% - 210px);}
.foot{background:#ff6634;height:50px;}
.body{margin:0;
padding:0}
.top{height:100px;background:#CCCCCC}
.main{width:500px;height:500px;background:red;margin:0 auto;}
.left{width:200px;height:500px;float:left;background:blue;}
.right{height:500px;margin:0 0 0 210px;background:#99FFCC;}
.footer{height:100px;background:#FF6600;}
padding:0}
.top{height:100px;background:#CCCCCC}
.main{width:500px;height:500px;background:red;margin:0 auto;}
.left{width:200px;height:500px;float:left;background:blue;}
.right{height:500px;margin:0 0 0 210px;background:#99FFCC;}
.footer{height:100px;background:#FF6600;}
图中各区域RGB颜色:
top:204 204 204
main:252 3 1
left: 0 0 254
right: 154 204 153
foot:255 102 52
使用方法:.top{ background-color: rgb(204,204,204); }
top:204 204 204
main:252 3 1
left: 0 0 254
right: 154 204 153
foot:255 102 52
使用方法:.top{ background-color: rgb(204,204,204); }