122

我希望标签不在输入字段上方,而是在左侧。

<form method="post" action="" role="form" class="form-inline">
  <div class="form-group">
    <label for="rg-from">Ab: </label>
    <input type="text" id="rg-from" name="rg-from" value="" class="form-control">
  </div>
  <div class="form-group">
    <label for="rg-to">Bis: </label>
    <input type="text" id="rg-to" name="rg-to" value="" class="form-control">
  </div>
  <div class="form-group">
    <input type="button" value="Clear" class="btn btn-default btn-clear"> 
    <input type="submit" value="Los!" class="btn btn-primary">
  </div>
</form>

这段代码给了我:

Code_Result_Bootstrap_3_Label

我想拥有:

Desired_Result_Bootstrap_3_Label

4

15 回答 15

106

您可以为每个表单组使用表单内联类:)

<form>                      
    <div class="form-group form-inline">                            
        <label for="exampleInputEmail1">Email address</label>
            <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email">
    </div>
</form>
于 2015-11-28T18:20:22.557 回答
58

<label>外面的form-group

<form class="form-inline">
  <label for="rg-from">Ab: </label>
  <div class="form-group">
    <input type="text" id="rg-from" name="rg-from" value="" class="form-control">
  </div>
  <!-- rest of form -->
</form>
于 2014-02-11T20:47:18.980 回答
14

Bootstrap 3 文档在“需要自定义宽度”部分的 CSS 文档选项卡中讨论了这一点,其中指出:

Bootstrap 中的输入、选择和文本区域默认为 100% 宽。要使用内联表单,您必须在其中使用的表单控件上设置宽度。

如果您使用浏览器和 Firebug 或 Chrome 工具来抑制或减少“宽度”样式,您应该会看到按照您想要的方式排列。显然,您可以创建适当的 CSS 来解决问题。

但是,我觉得我需要这样做很奇怪。我不禁觉得这种操作既烦人,而且从长远来看,容易出错。最终,我使用了一个虚拟类和一些 JS 来全局填充我所有的内联输入。这是少数病例,所以没有太大的问题。

尽管如此,我也很想听听有“正确”解决方案的人的意见,并且可以消除我的 shim/hack。

希望这对您有所帮助,并支持您不要向所有忽略您作为 Bootstrap 3 问题的请求的人吹气。

于 2013-08-30T18:05:18.600 回答
14

您可以使用两种方法创建这样的表单,其中标签和表单控件位于一侧 -

1.内联表单布局

<form class="form-inline" role="form">
    <div class="form-group">
        <label for="inputEmail">Email</label>
        <input type="email" class="form-control" id="inputEmail" placeholder="Email">
    </div>
    <div class="form-group">
        <label for="inputPassword">Password</label>
        <input type="password" class="form-control" id="inputPassword" placeholder="Password">
    </div>
    <button type="reset" class="btn btn-default">Reset</button>
    <button type="submit" class="btn btn-primary">Login</button>
</form>

2.横向表格布局

<form class="form-horizontal">
    <div class="row">
        <div class="col-sm-4">
            <div class="form-group">
                <label for="inputEmail" class="control-label col-xs-3">Email</label>
                <div class="col-xs-9">
                    <input type="email" class="form-control" id="inputEmail" placeholder="Email">
                </div>
            </div>
        </div>
        <div class="col-sm-5">
            <div class="form-group">
                <label for="inputPassword" class="control-label col-xs-3">Password</label>
                <div class="col-xs-9">
                    <input type="password" class="form-control" id="inputPassword" placeholder="Password">
                </div>
            </div>
        </div>
        <div class="col-sm-3">
            <button type="reset" class="btn btn-default">Reset</button>
            <button type="submit" class="btn btn-primary">Login</button>
        </div>
    </div>
</form>

您可以查看此页面以获取更多信息和现场演示 - http://www.tutorialrepublic.com/twitter-bootstrap-tutorial/bootstrap-forms.php

于 2015-12-01T05:40:24.120 回答
8

像这样

演示

HTML

<div class="row">
  <form class="form-inline">
    <fieldset>
      <label class="control-label"><strong>AB :</strong></label>
      <input type="text" class="input-mini" >
      <label class="control-label"><strong>BIS:</strong></label>
      <input type="text" class="input-mini" >
      <input type="button" value="Clear" class="btn btn-default btn-clear">
      <input type="submit" value="Los!" class="btn btn-primary">
    </fieldset>
  </form>
</div>
于 2013-08-23T13:37:46.603 回答
7

我有同样的问题,这是我的解决方案:

<form method="post" class="form-inline form-horizontal" role="form">
        <label class="control-label col-sm-5" for="jbe"><i class="icon-envelope"></i> Email me things like this: </label>
        <div class="input-group col-sm-7">
            <input class="form-control" type="email" name="email" placeholder="your.email@example.com"/>
            <span class="input-group-btn">
                <button class="btn btn-primary" type="submit">Submit</button>
            </span>
        </div>
    </form>

这是演示

于 2013-12-04T11:15:54.970 回答
5

您必须像这样向左浮动所有元素:

.form-group,
.form-group label,
.form-group input { float:left; display:inline;   }

为所需元素留出一些余量:

 .form-group { margin-right:5px }

并将标签设置为与字段高度相同的行高:

.form-group label { line-height:--px; }
于 2013-08-23T13:31:07.300 回答
5

您可以从现有答案中看到 Bootstrap 的术语令人困惑。如果您查看引导程序文档,您会看到form-horizo ​​ntal 类实际上是用于字段彼此下方的表单,即大多数人会认为是垂直表单。跨页面的表单的正确类是form-inline。他们可能引入了术语inline,因为他们已经误用了 Horizo ​​ntal

您从这里的一些答案中看到,有些人以一种形式使用这两个类!其他人认为他们实际上需要form-inline时需要form -horizo​​ntal 。

我建议完全按照 Bootstrap 文档中的描述进行操作:

<form class="form-inline">
  <div class="form-group">
    <label for="nameId">Name</label>
    <input type="text" class="form-control" id="nameId" placeholder="Jane Doe">
  </div>
</form>

产生:

在此处输入图像描述

于 2015-01-27T14:15:56.280 回答
2

您可以在标签内使用 span 标签

  <div class="form-group">
    <label for="rg-from">
      <span>Ab:</span> 
      <input type="text" id="rg-from" name="rg-from" value="" class="form-control">
    </label>
  </div>
于 2017-05-11T15:48:14.903 回答
1

我认为这就是您想要的,来自引导程序文档“水平表单使用引导程序的预定义网格类通过将 .form-horizo​​ntal 添加到表单来在水平布局中对齐标签和表单控件组。这样做会将 .form-groups 更改为表现为网格行,因此不需要 .row"。所以:

<form class="form-horizontal" role="form">
<div class="form-group">
  <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
  <input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
  <label for="inputPassword3" class="col-sm-2 control-label">Password</label>
  <div class="col-sm-10">
    <input type="password" class="form-control" id="inputPassword3" placeholder="Password">
  </div>
</div>
<div class="form-group">
  <div class="col-sm-offset-2 col-sm-10">
    <div class="checkbox">
      <label>
        <input type="checkbox"> Remember me
      </label>
    </div>
  </div>
</div>
<div class="form-group">
  <div class="col-sm-offset-2 col-sm-10">
    <button type="submit" class="btn btn-default">Sign in</button>
  </div>
</div>
</form>

小提琴:http: //jsfiddle.net/beewayne/B9jj2/29/

于 2014-02-04T01:10:19.340 回答
1

我设法解决了我的问题。似乎工作正常,这意味着我不必手动为所有输入添加宽度。

.form-inline .form-group input {
 width: auto; 
}
于 2014-01-06T11:58:43.763 回答
1

我相信您已经找到了答案……这是我得出的解决方案。

那是我的CSS。

.field, .actions {
    margin-bottom: 15px;
  }
  .field label {
    float: left;
    width: 30%;
    text-align: right;
    padding-right: 10px;
    margin: 5px 0px 5px 0px;
  }
  .field input {
    width: 70%;
    margin: 0px;
  }

还有我的 HTML...

<h1>New customer</h1>
<div class="container form-center">
    <form accept-charset="UTF-8" action="/customers" class="new_customer" id="new_customer" method="post">
    <div style="margin:0;padding:0;display:inline"></div>

  <div class="field">
    <label for="customer_first_name">First name</label>
    <input class="form-control" id="customer_first_name" name="customer[first_name]" type="text" />
  </div>
  <div class="field">
    <label for="customer_last_name">Last name</label>
    <input class="form-control" id="customer_last_name" name="customer[last_name]" type="text" />
  </div>
  <div class="field">
    <label for="customer_addr1">Addr1</label>
    <input class="form-control" id="customer_addr1" name="customer[addr1]" type="text" />
  </div>
  <div class="field">
    <label for="customer_addr2">Addr2</label>
    <input class="form-control" id="customer_addr2" name="customer[addr2]" type="text" />
  </div>
  <div class="field">
    <label for="customer_city">City</label>
    <input class="form-control" id="customer_city" name="customer[city]" type="text" />
  </div>
  <div class="field">
    <label for="customer_pincode">Pincode</label>
    <input class="form-control" id="customer_pincode" name="customer[pincode]" type="text" />
  </div>
  <div class="field">
    <label for="customer_homephone">Homephone</label>
    <input class="form-control" id="customer_homephone" name="customer[homephone]" type="text" />
  </div>
  <div class="field">
    <label for="customer_mobile">Mobile</label>
    <input class="form-control" id="customer_mobile" name="customer[mobile]" type="text" />
  </div>
  <div class="actions">
    <input class="btn btn-primary btn-large btn-block" name="commit" type="submit" value="Create Customer" />
  </div>
</form>
</div>

您可以在此处查看工作示例... http://jsfiddle.net/s6Ujm/

PS:我也是初学者,专业设计师...随时分享您的评论。

于 2014-02-26T12:01:37.673 回答
1

不需要 CSS。这在您的页面上应该看起来不错。你可以col-md-*根据自己的需要设置

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<div class="row">
                            <div class="col-md-12">
                                <form class="form-inline" role="form">
                                    <div class="col">
                                        <div class="form-group">
                                            <label for="inputEmail" class="col-sm-3">Email</label>
                                            <input type="email" class="form-control col-sm-7" id="inputEmail" placeholder="Email">
                                        </div>
                                    </div>
                                    <div class="col">
                                        <div class="form-group">
                                            <label for="inputPassword" class="col-sm-3">Email</label>
                                            <input type="password" class="form-control col-sm-7" id="inputPassword" placeholder="Email">
                                        </div>
                                    </div>
                                    
                                    <button class="btn btn-primary">Button 1</button>
                                    &nbsp;&nbsp;
                                    <button class="btn btn-primary">Button 2</button>
                                </form>
                            </div>
                        </div>

于 2019-08-29T14:59:05.747 回答
0
<div class="control-group">
   <label class="control-label" for="firstname">First Name</label>
   <div class="controls">
    <input type="text" id="firstname" name="firstname"/>
   </div>
</div>

我们也可以简单地使用它

<label>First name:
    <input type="text" id="firstname" name="firstname"/>
</label>
于 2013-08-23T13:43:23.270 回答
0

似乎添加style="width:inherit;"到输入工作正常。 jsfiddle 演示

于 2013-10-31T19:47:05.600 回答