Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPeter Blazejewicz <peter.blazejewicz@gmail.com>2018-02-04 19:44:37 +0300
committerMark Otto <markd.otto@gmail.com>2018-02-24 23:22:20 +0300
commit47521599391888508eceaeed25a2e636ed2bf6f9 (patch)
treefe1ee2016f47b938726f1dd861e2e1e14dbad842 /docs
parent8cfbf6933b8a0146ac3fbc369f19e520bd1ebdac (diff)
Brush up vertical rhythm of form-check in docs. Closes #25546
This adds `form-group` to add the same vertical space to the `form-check` as in other grouped controls used in form sample markup. Thanks!
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/forms.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md
index 8bf61de35d..411b1f461a 100644
--- a/docs/4.0/components/forms.md
+++ b/docs/4.0/components/forms.md
@@ -25,7 +25,7 @@ Here's a quick example to demonstrate Bootstrap's form styles. Keep reading for
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
- <div class="form-check">
+ <div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>