可能重複:
Simple 2 column div layout
2 column layout in CSS2列DIV佈局
我想建立一個2列DIV佈局。其中一列應該右對齊並且自動調整大小,另一列應該填滿剩下的剩餘空間。
可能重複:
Simple 2 column div layout
2 column layout in CSS2列DIV佈局
我想建立一個2列DIV佈局。其中一列應該右對齊並且自動調整大小,另一列應該填滿剩下的剩餘空間。
想要這樣http://jsfiddle.net/UNgcd/2/?
HTML:
<div class='wrap'>
<div class='right'>
<p>some text goes here for auto width</p>
</div>
<div class='left'>
<p>this takes up remaining space to the left</p>
</div>
</div>
CSS:
.right {
background-color: red;
float: right;
width: auto;
}
.left {
background-color: yellow;
overflow: hidden;
}
HTML:
<div id="right">Auto sized right div</div>
<div id="left">Auto filling left div</div>
CSS:
#left{
overflow: hidden;
}
#right{
float: right;
}
http://jsfiddle.net/Paulpro/aCC7b/ – Paulpro
有趣。你有什麼嘗試? – Trevor
...並且當您將此問題的標題鍵入Stack Overflow時,您是否看不到任何相關問題? – Phrogz
[Simple 2 column div layout](http://stackoverflow.com/questions/6748178/simple-2-column-div-layout)或[CSS中的2列布局]的副本(http://stackoverflow.com/questions/144375/2-column-layout-in-css)或[DIV only two-column CSS layout](http://stackoverflow.com/questions/3432304/div-only-two-column-css-layout)或(本網站上已有大量其他相關問題)。 – Phrogz