diff options
| author | Mark Otto <[email protected]> | 2017-02-04 16:43:05 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-02-04 16:43:05 -0800 |
| commit | 0da20476ecfc8c6519b3b46098e72c49ba12e55e (patch) | |
| tree | 6c74e7d4894c5c20619fc3713c6fb64b473dd3a0 /docs | |
| parent | 6b9265fc2dbe242bc6e4120333710b8a29b0b5ca (diff) | |
| download | bootstrap-0da20476ecfc8c6519b3b46098e72c49ba12e55e.tar.xz bootstrap-0da20476ecfc8c6519b3b46098e72c49ba12e55e.zip | |
Fixes #21892
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/components/forms.md | 4 |
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> |
