答案 0 :(得分:2)
导致列的nestind类。首先你有div.col-md-6.form-group
,而你内有label.control-label.col-md-8
,所以它会使col-*
的填充加倍。
答案 1 :(得分:2)
与下面的答案状态一样,您已将col-md-6
课程与 Fieldset 3 的form-group
一起提供。既然你需要col-md-6
将元素分成2列,你可以定位那个特定的字段集并删除填充。
HTML:
<form class="form-horizontal" id="fieldset3"> <!-- ID added -->
<fieldset>
<legend>Fieldset 3</legend>
CSS:
#fieldset3 .col-md-6{
padding-left:0px;
}
<强> DEMO 1 强>
为了方便起见,您还可以通过这种方式对标签进行分组:
<div class="col-md-6">
<div class="form-group">
<!-- Label and input here -->
</div>
<div class="form-group">
<!-- Label and input here -->
</div>
<div class="form-group">
<!-- Label and input here -->
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<!-- Label and input here -->
</div>
<div class="form-group">
<!-- Label and input here -->
</div>
<div class="form-group">
<!-- Label and input here -->
</div>
</div>
<强> DEMO 2 强>