2011-07-31 75 views

回答

22

添加overflow: hidden的容器,它可以包含浮動:

.comment 
{ 
    width: 960px; 
    margin: auto; 
    margin-top: 24px; 
    font-size: 14px; 
    background-color: #777777; 
    overflow: hidden; 
} 
+0

謝謝。工作很棒! – sed

+1

...我多年來一直在使用表格來避免這個問題:( – Peter

+0

哇!爲什麼這個工作會這樣? – seebiscuit

1

檢查this出來。

您需要在評論框的結尾以清除浮動

+1

它不應該是style =「clear:both;」而不是clear =「both」? – MazeChaZer

+0

兩者都做同樣的事情,都是正確 –

+1

使用clear作爲一個HTML屬性已經過時了很多年了,請使用由@MazeChaZer提出的解決方案,參見clear attribute reference [here](http://www.sitepoint.com/web-foundations/clear -html屬性/) –