Update typo css.html move double class .form-control from label in example mark up to input

missed the double class in label in recent commit #8621
This commit is contained in:
James Holland 2013-07-26 09:43:05 -04:00
parent 2a51ebf671
commit 0e7aad8b8d
1 changed files with 2 additions and 2 deletions

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">