aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-26 10:31:20 -0700
committerMark Otto <[email protected]>2013-07-26 10:31:20 -0700
commitcaa5b4b718301ab49425eadfa5012dba25a06d8e (patch)
tree3b378171c639f431f96d931654d0a20ae5cce336 /css.html
parent099e9709531b9ebfd088e06c4231effb8abf71cb (diff)
parent0e7aad8b8d167f20925499b3a90b2bffdc32d469 (diff)
downloadbootstrap-caa5b4b718301ab49425eadfa5012dba25a06d8e.tar.xz
bootstrap-caa5b4b718301ab49425eadfa5012dba25a06d8e.zip
Merge pull request #8624 from jholl/patch-2
Update typo css.html move double class .form-control from label in examp...
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">