在Bootstrap 4中,为什么Label与col类一起使用,但在col类中输入换行

时间:2019-06-05 17:18:40

标签: twitter-bootstrap

使用引导程序4时,我注意到在.form-group div

标签.col-xx-xx一起使用,但输入被包装在.col-xx-xx中,
标签输入都是组件,为什么一个可以与col类一起使用,而另一个则应该包装在col类中

        
  

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<form>
  <div class="form-group row">
    <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
    <div class="col-sm-10">
      <input type="text" readonly class="form-control-plaintext" id="staticEmail" value="email@example.com">
    </div>
  </div>
  <div class="form-group row">
    <label for="inputPassword" class="col-sm-2 col-form-label">Password</label>
    <div class="col-sm-10">
      <input type="password" class="form-control" id="inputPassword" placeholder="Password">
    </div>
  </div>
</form>

0 个答案:

没有答案