1

我有两个<div/>s 以“A 列”和“B 列”的方式排列。B 列是一个设定的宽度,我希望 A 列占据剩余空间。有没有办法在 CSS 中实现这一点?或者也许是我正在做的更好的选择?

这是结构:

<div>
  <div id='colA'>style is float right</div>
  <div id='colB'>this has a set width of 50px</div>
<div>
4

2 回答 2

5

使用display: table-cell.

#container{
    display: table;
    width: 100%;
}

#colA {
    display: table-cell;
}

#colB {
    display: table-cell;
    width: 50px;
}

演示

于 2013-04-23T15:37:10.953 回答
3

在其中一个上使用float并向另一个添加边距,该边距等于该方向上浮动的宽度..

<div>
  <div id='colA'>this has a set width of 50px and is floated</div>
  <div id='colB'>style has margin equal to floated width</div>
</div>

#colA {
    width:50px;
    float:left;
    background-color:red;
}
#colB {
    margnin-left:50px;
    background-color:green;
}

演示在 http://jsfiddle.net/C3caq/1/

于 2013-04-23T15:41:26.733 回答