我想DIV的「clear:both」風格可以讓它的包含DIV的父代不會換行,但是在HTML下面看起來不是那樣工作的。爲什麼這個「明確:兩個」不防止包裝?
如果瀏覽器窗口很窄,第二個DIV「OK OK」仍然會包裝到下一行。
<div style="overflow: hidden;">
<div style="float: left; overflow: hidden; white-space: nowrap">
Hello world 1 Hello world 2 Hello world 3
</div>
<div style="float: left; overflow: hidden; white-space: nowrap">
OK OK OK OK OK OK OK OK
</div>
<div style="clear: both;">
</div>
</div>
我錯過了什麼嗎?
總有一個機會,只要將申報單將包裹因爲沒有寬度內的div指定。如果你沒有指定寬度,浮動的div就會盡可能地寬,以保存其內容,最多達到其容器的寬度。 – wheresrhys 2009-04-25 13:32:42