aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorJames Holland <[email protected]>2013-07-26 09:43:05 -0400
committerJames Holland <[email protected]>2013-07-26 09:43:05 -0400
commit0e7aad8b8d167f20925499b3a90b2bffdc32d469 (patch)
treee7953121c6cbc62f1c9fe37c06a7070015216d1a /css.html
parent2a51ebf671aca07cdb549c264a9b2c2dd3d7d540 (diff)
downloadbootstrap-0e7aad8b8d167f20925499b3a90b2bffdc32d469.tar.xz
bootstrap-0e7aad8b8d167f20925499b3a90b2bffdc32d469.zip
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
Diffstat (limited to 'css.html')
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index 3319de61a..05defcae1 100644
--- 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">