Twitter bootstrap 引导表单字段未扩展到完整长度

Twitter bootstrap 引导表单字段未扩展到完整长度,twitter-bootstrap,Twitter Bootstrap,我有一个使用bootstrap的网页,它有一个表单。要使表单上的字段一直延伸到空白区域的末尾,我需要做什么 <div class="form-group"> <label class="control-label col-md-4" for="Name">Name</label> <input class="form-control col-md-8" id="Name" name="Name" type="text"

我有一个使用bootstrap的网页,它有一个表单。要使表单上的字段一直延伸到空白区域的末尾,我需要做什么

   <div class="form-group">
       <label class="control-label col-md-4" for="Name">Name</label>
       <input class="form-control col-md-8" id="Name" name="Name" type="text" />
   </div>

名称

这就是目标:


谢谢

元素中删除
列md-*
类。


名称

如果试图使用网格视图,则父元素需要有一个“行”类。这意味着您要保留col md-*类。如果要使用CSS表单,请使用父级中的内容,并在我删除col md-*时删除col md-*类

。。。我把标签贴在输入框的顶部。输入框仍然没有延伸到末尾。将
窗体组
的父级添加到
窗体水平
类,并检查它是否具有带值的
宽度
最大宽度
属性。不要在
窗体控件
的同一元素上使用
列-*
。将
input.form控件
嵌套在
div.col-*
中。