清除浮动,撑起元素高度
作者:
Sasoli | 来源:发表于
2018-03-06 16:34 被阅读0次<style type="text/css">
.div1{background:#000080;border:1px solid red;}
.div2{background:#800080;border:1px solid red;height:100px;margin-top:10px}
.left{float:left;width:20%;height:200px;background:#DDD}
.right{float:right;width:30%;height:80px;background:#DDD}
/*清除浮动代码*/
.clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}
.clearfloat{zoom:1}
</style>
<div class="div1 clearfloat">
<div class="left">Left</div>
<div class="right">Right</div>
</div>
<div class="div2">
div2
</div>
本文标题:清除浮动,撑起元素高度
本文链接:https://www.haomeiwen.com/subject/wllrfftx.html
网友评论