diff options
| author | Patrick H. Lauke <[email protected]> | 2017-09-12 22:29:09 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-12 22:29:09 +0100 |
| commit | 404c1a37acdf3689bb38f9f73f289d97fd434a2a (patch) | |
| tree | 9bd9ce01e191dce81d369176e1bbae15a09c36ba /docs/4.0/components/forms.md | |
| parent | 576636047754711ccd702f6916a57218f0460085 (diff) | |
| download | bootstrap-404c1a37acdf3689bb38f9f73f289d97fd434a2a.tar.xz bootstrap-404c1a37acdf3689bb38f9f73f289d97fd434a2a.zip | |
Fix malformed `<select>` in example
Diffstat (limited to 'docs/4.0/components/forms.md')
| -rw-r--r-- | docs/4.0/components/forms.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md index 1fe14ba19..d2ca3bb73 100644 --- a/docs/4.0/components/forms.md +++ b/docs/4.0/components/forms.md @@ -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> |
