gpt4 book ai didi

css - twitter bootstrap 中的双列布局,第一列宽度固定,第二列宽度填充其余空间

转载 作者:太空宇宙 更新时间:2023-11-04 14:52:16 26 4
gpt4 key购买 nike

我正在使用 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/)

关于css - twitter bootstrap 中的双列布局,第一列宽度固定,第二列宽度填充其余空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17295533/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com