下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;
}