Twitter bootstrap 3 如何使用Bootstrap3创建2列表单

Twitter bootstrap 3 如何使用Bootstrap3创建2列表单,twitter-bootstrap-3,Twitter Bootstrap 3,我已经使用Bootstrap3创建了表单。如何制作一个2列表单。左边是标签,右边是输入、下拉框等 <fieldset> <div class="form-group"> <label for="exampleInputProject">Map info</label> <input type="text

我已经使用Bootstrap3创建了表单。如何制作一个2列表单。左边是标签,右边是输入、下拉框等

          <fieldset>

                  <div class="form-group">

                    <label for="exampleInputProject">Map info</label>

                    <input type="text" class="form-control" id="exampleInput" placeholder="">

                  </div>

                  <div class="form-group">

                    <label for="exampleInputPassword1">Class</label>

                    <input type="text" class="form-control" id="exampleInputTeam" placeholder="Team Project information">

                  </div>

                    <div class="form-group">

                    <label for="exampleInputProject">  info</label>

                    <input type="text" class="form-control" id="exampleInput" placeholder="Build Defintion">

                  </div>

                  </fieldset>

                  <fieldset>

                  <div class="form-group">

                    <label for="exampleInputPassword1">Name</label>

                    <input type="text" class="form-control" id="exampleInputTeam" placeholder="Build Def Name">

                  </div>    



                  <div class="form-group">

                    <label for="exampleInputPassword1">Location</label>

                    <input type="text" class="form-control" id="exampleInputTeam" placeholder="Config Location">

                  </div>  

</fieldset>

地图信息
等级
信息
名称
位置
在两个字段集周围添加

<div class="row"> 
 <div class="col-md-6">
     <fieldset>
    ...
     </fielset>
  </div>

    <div class="col-md-6">
       <fieldset>
    ...
      </fielset>
     </div>
 </div>

...
...