0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Merge pull request #8624 from jholl/patch-2

Update typo css.html move double class .form-control from label in examp...
This commit is contained in:
Mark Otto 2013-07-26 10:31:20 -07:00
commit caa5b4b718

View File

@ -1278,9 +1278,9 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
{% highlight html %}
<form class="form-horizontal">
<div class="row">
<label for="inputEmail" class="form-control" class="col-lg-2 control-label">Email</label>
<label for="inputEmail" class="col-lg-2 control-label">Email</label>
<div class="col-lg-10">
<input type="text" id="inputEmail" placeholder="Email">
<input type="text" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="row">