mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-26 09:10:24 +00:00
Removed .col-form-label from vertical form example (#24771)
Fixes #24739
This commit is contained in:
parent
1ee9cb04bd
commit
c81ce9fdf4
1 changed files with 2 additions and 2 deletions
|
|
@ -264,11 +264,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 class="col-form-label" for="formGroupExampleInput">Example label</label>
|
||||
<label for="formGroupExampleInput">Example label</label>
|
||||
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example input">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-form-label" for="formGroupExampleInput2">Another label</label>
|
||||
<label for="formGroupExampleInput2">Another label</label>
|
||||
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Another input">
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Reference in a new issue