aboutsummaryrefslogtreecommitdiff
path: root/docs/4.0/components/forms.md
diff options
context:
space:
mode:
authorPatrick H. Lauke <[email protected]>2017-09-12 22:29:09 +0100
committerGitHub <[email protected]>2017-09-12 22:29:09 +0100
commit404c1a37acdf3689bb38f9f73f289d97fd434a2a (patch)
tree9bd9ce01e191dce81d369176e1bbae15a09c36ba /docs/4.0/components/forms.md
parent576636047754711ccd702f6916a57218f0460085 (diff)
downloadbootstrap-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.md5
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>