Bootstrap 3 - Space 在带有图标和自定义宽度的输入之间

Bootstrap 3 - Space between inputs with Icons and custom width

我遇到了一个我真的不知道如何处理的问题。 我正在研究 BootStrap 3,我正在尝试制作一些内联表单,因为它比完整的垂直表单更方便用户使用(我不想永远滚动)

我找到了一些方法来内联普通输入,但是当涉及到带有图标的输入时 (font awesome),我可以想出如何内联它们,但是它们并排内联而没有任何 space他们之间。 另外,我不知道如何像使用普通输入那样更改它们的宽度(例如 col-sm-4)。

我希望对 "Email" 和 "Telephone" 进行换行并更改它们的宽度

请看一下我的代码和下图的解释: http://www.bootply.com/T8w3oRE3Sn

你只需要对bootstrap网格系统有很好的理解

<div class="form-group row">
              <label for="inputEmail3" class="col-sm-1 control-label">Interlocuteur</label>

              <div class="col-sm-2">
                <input type="text" class="form-control" id="inputEmail3">
              </div>

              <label for="inputEmail5" class="col-sm-1 control-label">Poste</label>

              <div class="col-sm-2">
                <input type="text" class="form-control" id="inputEmail5" placeholder="DeInterlocuteur">
              </div>

试试这个

IF you see it in large screen it will be inline. You have to use form-inline class to make form inline.

<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="container">
  <form class="form-inline">
    <div class="form-group">
      <label for="email">Email:</label>
      <input type="email" class="form-control" id="email" placeholder="Enter email">
    </div>
    <div class="form-group">
      <label for="pwd">Password:</label>
      <input type="password" class="form-control" id="pwd" placeholder="Enter password">
    </div>
    <div class="checkbox">
      <label><input type="checkbox"> Remember me</label>
    </div>
    <button type="submit" class="btn btn-default">Submit</button>
  </form>
</div>

您在表单组中遗漏了一些东西,所以我已经整理好了。 Hope it will help you :)

Below is the working snippet:

.myform .form-inline .input-group .input-group-addon{ width:20px;}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="row myform">
  <div class="col-xs-12">
    <form name="myform" role="form" novalidate>

      <div class="form-inline ">
        <div class="form-group col-xs-6">
          <div class="input-group col-xs-12">
            <span class="input-group-addon"><i class="fa fa-envelope"></i></span>
            <input type="email" class="form-control" placeholder="Email de l'interlocuteur">
          </div>
        </div>
        <div class="form-group col-xs-6">
          <div class="input-group col-xs-12">
            <span class="input-group-addon"><i class="fa fa-phone"></i></span>
            <input type="email" class="form-control" placeholder="Téléphone de l'interlocuteur">
          </div>
        </div>
      </div>

    </form>
  </div>

</div>