我正在使用 Twitter Bootstrap,我正在尝试获取标题中描述的布局。
请指教。
你可以尝试这样的事情:
<div class="row-fluid">
<div class="span12">
<div class="fixed_width"></div>
<div class="variable_width"></div>
</div>
</div>
和 CSS
div.fixed_width {
width: 300px;
// or try with: "float:left;" too
}
div.variable_width {
overflow: hidden;
// if you use float:left in the other, don't use overflow here, but try with: "width:100%;"
}
在这里你可以找到一个更一般的例子(http://jsfiddle.net/glee/6Cavr/)