]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
CSS docs page: Use simpler HTML5 style for `multiple` boolean attribute of <select> 8737/head
authorChris Rebert <code@rebertia.com>
Sun, 28 Jul 2013 08:42:55 +0000 (01:42 -0700)
committerChris Rebert <code@rebertia.com>
Mon, 29 Jul 2013 05:17:08 +0000 (22:17 -0700)
css.html

index 95f9f095e1d54ea7abd1d1c536e307bc0c5f3b67..2820a9d70e6a63b8c222d87349c40cbb665ee150 100644 (file)
--- a/css.html
+++ b/css.html
@@ -1403,7 +1403,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
 {% endhighlight %}
 
     <h3>Selects</h3>
-    <p>Use the default option or specify a <code>multiple="multiple"</code> to show multiple options at once.</p>
+    <p>Use the default option, or add <code>multiple</code> to show multiple options at once.</p>
     <form class="bs-example">
       <select class="form-control">
         <option>1</option>
@@ -1413,7 +1413,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
         <option>5</option>
       </select>
       <br>
-      <select multiple="multiple" class="form-control">
+      <select multiple class="form-control">
         <option>1</option>
         <option>2</option>
         <option>3</option>