aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndres Galante <[email protected]>2017-10-18 13:59:30 -0300
committerXhmikosR <[email protected]>2017-10-18 19:59:30 +0300
commit217d344fa8c60b32c9c2855ae373e54589b17b45 (patch)
treecc1b44f15e1766ad17167de44ce218d913e7c504 /docs
parent80c909c99c496b8e09fe181171dc8c2fba60709d (diff)
downloadbootstrap-217d344fa8c60b32c9c2855ae373e54589b17b45.tar.xz
bootstrap-217d344fa8c60b32c9c2855ae373e54589b17b45.zip
Remove uncessary `col-form-label` from form row docs (#24335)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/forms.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md
index ed4d95b70..ba5633850 100644
--- a/docs/4.0/components/forms.md
+++ b/docs/4.0/components/forms.md
@@ -314,36 +314,36 @@ More complex layouts can also be created with the grid system.
<form>
<div class="form-row">
<div class="form-group col-md-6">
- <label for="inputEmail4" class="col-form-label">Email</label>
+ <label for="inputEmail4">Email</label>
<input type="email" class="form-control" id="inputEmail4" placeholder="Email">
</div>
<div class="form-group col-md-6">
- <label for="inputPassword4" class="col-form-label">Password</label>
+ <label for="inputPassword4">Password</label>
<input type="password" class="form-control" id="inputPassword4" placeholder="Password">
</div>
</div>
<div class="form-group">
- <label for="inputAddress" class="col-form-label">Address</label>
+ <label for="inputAddress">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St">
</div>
<div class="form-group">
- <label for="inputAddress2" class="col-form-label">Address 2</label>
+ <label for="inputAddress2">Address 2</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor">
</div>
<div class="form-row">
<div class="form-group col-md-6">
- <label for="inputCity" class="col-form-label">City</label>
+ <label for="inputCity">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="form-group col-md-4">
- <label for="inputState" class="col-form-label">State</label>
+ <label for="inputState">State</label>
<select id="inputState" class="form-control">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="form-group col-md-2">
- <label for="inputZip" class="col-form-label">Zip</label>
+ <label for="inputZip">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
</div>