我有一個問題,因爲我上面提到。HTML浮動div的問題
在我的web應用程序中,我將通過jQuery(ASP.NET MVC)動態生成許多div。 每個新的div可以有不同的寬度,並且他們全部MUST be floated to the left
我試過(測試)浮動到左邊的2個div,但沒有成功。我究竟做錯了什麼 ?
Each div has a defined width, because when the total width of all divs > mainDIV's width, then the scrollbar will appear. Now, in that case, this 2 divs are not floated to the left
下面的代碼
<div id="mainDIV" style="overflow:auto; width:100%;">
<div style="width:960px; float:left; background-color:Lime;">
a
</div>
<div style="width:960px; float:left; background-color:Red;">
b
</div>
</div>
在這種情況下,我需要改變溢出:自動溢出-x:滾動 – Tony 2010-11-16 16:43:58