]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update typo css.html move double class .form-control from label in example mark up... 8624/head
authorJames Holland <james@turnupworks.com>
Fri, 26 Jul 2013 13:43:05 +0000 (09:43 -0400)
committerJames Holland <james@turnupworks.com>
Fri, 26 Jul 2013 13:43:05 +0000 (09:43 -0400)
missed the double class in label in recent commit #8621

css.html

index 3319de61a9559c490d9e809f5fc382aa8a430469..05defcae1cdd4318372342598520f073d3b6ae27 100644 (file)
--- a/css.html
+++ b/css.html
@@ -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">