值 描述
left 在左侧不允许浮动元素。
right 在右侧不允许浮动元素。
both 在左右两侧均不允许浮动元素。
none 默认值。允许浮动元素出现在两侧。
inherit 规定应该从父元素继承 clear 属性的值。
left 在左侧不允许浮动元素。
right 在右侧不允许浮动元素。
both 在左右两侧均不允许浮动元素。
none 默认值。允许浮动元素出现在两侧。
inherit 规定应该从父元素继承 clear 属性的值。
.top{height:100px;background:#ccc;}
.main{background:red;position:relative;height:500px;overflow:hidden;}
.left{height:500px;width:200px;float:left;background:blue;}
.right{height:500px;width:99%; position:absolute;margin:0 0 0 210px;background:#AAE27E;}
.foot{height:50px; background:#E2452F;}
.main{background:red;position:relative;height:500px;overflow:hidden;}
.left{height:500px;width:200px;float:left;background:blue;}
.right{height:500px;width:99%; position:absolute;margin:0 0 0 210px;background:#AAE27E;}
.foot{height:50px; background:#E2452F;}
.top{height:200px;background:#999;}
.main{height:600px;background:#F00}
.left{ width:200px;height:600px;background:#9C0;position:absolute;left:0;top:200px}
.right{height:600px;background:#03C;margin:0 0 0 210px}
.foot{background:#F90;height:100px}
</style>
.main{height:600px;background:#F00}
.left{ width:200px;height:600px;background:#9C0;position:absolute;left:0;top:200px}
.right{height:600px;background:#03C;margin:0 0 0 210px}
.foot{background:#F90;height:100px}
</style>
.wrap{width:80%;margin:0 auto;background:#6cf;}
.top{width:100%;height:100px;background:grey;}
.main{background:red;overflow:hidden;}
.left{background:blue;width:200px;height:800px;float:left;}
.right{background:green;width:75%;height:800px;float:right;}
.foot{background:orange;}
这种写法放大了没问题,缩小了就很惊奇?
.top{width:100%;height:100px;background:grey;}
.main{background:red;overflow:hidden;}
.left{background:blue;width:200px;height:800px;float:left;}
.right{background:green;width:75%;height:800px;float:right;}
.foot{background:orange;}
这种写法放大了没问题,缩小了就很惊奇?
.top{background-color:#ddd;width:100%;height:60px}
.main{background-color:red;position:relative;height:600px}
.left{background-color:blue;width:200px;height:600px;position:absolute;top:0}
.right{background-color:green;margin-left:210px;height:600px}
.foot{background-color:orange;width:100%}
.main{background-color:red;position:relative;height:600px}
.left{background-color:blue;width:200px;height:600px;position:absolute;top:0}
.right{background-color:green;margin-left:210px;height:600px}
.foot{background-color:orange;width:100%}