mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Fixes #21892
This commit is contained in:
parent
6b9265fc2d
commit
0da20476ec
1 changed files with 2 additions and 2 deletions
|
@ -261,11 +261,11 @@ The `.form-group` class is the easiest way to add some structure to forms. Its o
|
||||||
{% example html %}
|
{% example html %}
|
||||||
<form>
|
<form>
|
||||||
<div class="form-group">
|
<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">
|
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="Example input">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<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">
|
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Another input">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Add table
Reference in a new issue