编辑:自引导 v3 以来,类已经发展,因此使用 col-xx-X 类来获得下面解释的结果(可能需要进一步更改)
现场演示(jsfiddle)
您可以使用 a.row-fluid
和 use.spanX
使输入填充其容器:
<form class="form-search">
<div class="row-fluid">
<input type="text" class="input-medium search-query span12">
</div>
</form>
<form class="form-search">
<div class="row-fluid">
<input type="text" class="input-medium search-query span8">
<button type="submit" class="btn span4">Cancel</button>
</div>
</form>
按钮/输入组合似乎需要一些修复:
/* May not be the best way, not sure if BS has a better solution */
/* Fix for combining input and button spans in a row */
.row-fluid > input + button[class*="span"] {
float: none; /* Remove the */
display: inline-block; /* floating */
margin-left: 0; /* Stick it to the left */
}
最后一件事,你不应该结合.spanX
,.well
因为padding
and 边界和其他东西,这里是一个为什么 (jsfiddle) 的例子。