清除浮动
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除浮动相关的知识,希望对你有一定的参考价值。
清除浮动之clear:both
CSS:
.border{
background: black;
}
.float{
width: 100px;
height: 100px;
background: red;
margin:20px 20px 20px 20px;
float: right;
}
.clear{
clear: both;
}
html:
<div class="border ">
<div class="float">
</div>
<div class="clear"></div>
</div>
以上是关于清除浮动的主要内容,如果未能解决你的问题,请参考以下文章