aboutsummaryrefslogtreecommitdiff
path: root/docs/components/forms.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-02-04 16:43:05 -0800
committerMark Otto <[email protected]>2017-02-04 16:43:05 -0800
commit0da20476ecfc8c6519b3b46098e72c49ba12e55e (patch)
tree6c74e7d4894c5c20619fc3713c6fb64b473dd3a0 /docs/components/forms.md
parent6b9265fc2dbe242bc6e4120333710b8a29b0b5ca (diff)
downloadbootstrap-0da20476ecfc8c6519b3b46098e72c49ba12e55e.tar.xz
bootstrap-0da20476ecfc8c6519b3b46098e72c49ba12e55e.zip
Fixes #21892
Diffstat (limited to 'docs/components/forms.md')
-rw-r--r--docs/components/forms.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 17a96a113..88740acfc 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -261,11 +261,11 @@ The `.form-group` class is the easiest way to add some structure to forms. Its o
{% example html %}
<form>
<div class="form-group">
- <label for="formGroupExampleInput">Example label</label>
+ <label class="form-control-label" for="formGroupExampleInput">Example label</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example input">
</div>
<div class="form-group">
- <label for="formGroupExampleInput2">Another label</label>
+ <label class="form-control-label" for="formGroupExampleInput2">Another label</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Another input">
</div>
</form>