mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-21 15:00:23 +00:00
Fix malformed <select> in example
This commit is contained in:
parent
5766360477
commit
404c1a37ac
1 changed files with 4 additions and 1 deletions
|
|
@ -337,7 +337,10 @@ More complex layouts can also be created with the grid system.
|
|||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="inputState" class="col-form-label">State</label>
|
||||
<select id="inputState" class="form-control">Choose</select>
|
||||
<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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue