我有一个带有一些内联单选按钮和标签的 Bootstrap 表单。我想将标签与按钮保持在同一行,但我似乎无法做到这一点。这是我的方法:
<form>
<div class="control-group">
<label class="control-label">Some label</label>
<div class="controls">
<label class="radio inline">
<input type="radio" value="1"/>
First
</label>
<label class="radio inline">
<input type="radio" value="2"/>
Second
</label>
</div>
</div>
</form>
小提琴:http: //jsfiddle.net/GaDbZ/2/
我也试过这个:
<form>
<div class="form-inline">
<label class="control-label">Some label</label>
<label class="radio">
<input type="radio" value="1"/>
First
</label>
<label class="radio">
<input type="radio" value="2"/>
Second
</label>
</div>
</form>
但一切都融为一体。小提琴:http: //jsfiddle.net/GaDbZ/3/
如何获得第一个的水平间距和第二个的垂直间距?
另外,我应该注意,在现实生活中,表格中还有很多其他的东西,所以我不想使用form-horizontal
它,因为它会产生与我在其中的其他东西不匹配的时髦边距。