mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-17 19:06:40 +02:00
Fix malformed <select>
in example
This commit is contained in:
@@ -337,7 +337,10 @@ More complex layouts can also be created with the grid system.
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="inputState" class="col-form-label">State</label>
|
<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>
|
||||||
<div class="form-group col-md-2">
|
<div class="form-group col-md-2">
|
||||||
<label for="inputZip" class="col-form-label">Zip</label>
|
<label for="inputZip" class="col-form-label">Zip</label>
|
||||||
|
Reference in New Issue
Block a user