]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix malformed `<select>` in example
authorPatrick H. Lauke <redux@splintered.co.uk>
Tue, 12 Sep 2017 21:29:09 +0000 (22:29 +0100)
committerGitHub <noreply@github.com>
Tue, 12 Sep 2017 21:29:09 +0000 (22:29 +0100)
docs/4.0/components/forms.md

index 1fe14ba1988f0facb8cff082b261e9f0cef0aee4..d2ca3bb736b38ecbf7edbd0097f354976558c002 100644 (file)
@@ -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>