具有均勻間隔DIV 的流體寬度
使用者試圖建立流體寬度容器DIV,其中包含四個尺寸相等(300 像素)的子DIV x 250 像素)。要求是第一個 DIV 向左浮動,最後一個 DIV 向右浮動,其餘兩個 DIV 之間均勻分佈,同時保持反應能力。
解決方案:
考慮以下CSS 和HTML實現:
#container { text-align: justify; -ms-text-justify: distribute-all-lines; text-justify: distribute-all-lines; } .box1, .box2, .box3, .box4 { display: inline-block; *display: inline; zoom: 1; } .stretch { width: 100%; display: inline-block; font-size: 0; line-height: 0 }
<div>
解釋:
以上是如何建立具有均勻間隔 DIV 的流體寬度容器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!