你可以從我使用clear:both
,讓我把#one #two
下#three
代碼中看到的,但這似乎是從增加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;
}
我與我的最快,最好的答案去了。不過你們都是對的。再次感謝你們。 – Giles