正如您从我clear:both
用来允许我放置#three
的代码中看到的那样,#one #two
但这似乎阻止了我添加margin-top
到#three
是否有解决此问题的方法?
<div id="one">
</div>
<div id="two">
</div>
<div id="three" class="clearfix">
</div>
#one {
float:left;
}
#two {
float:right;
}
.clearfix {
clear:both;
}
#three {
margin-top: 20px;
}