aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-07-28 01:42:55 -0700
committerChris Rebert <[email protected]>2013-07-28 22:17:08 -0700
commit70bd9b936fe02917def4b142ff2dacbb5526c6c6 (patch)
tree67c9479320af4527f92c754e195fa87b1e222eab
parentc9c2418a47cc887ea6bacd7783582741267dcd37 (diff)
downloadbootstrap-70bd9b936fe02917def4b142ff2dacbb5526c6c6.tar.xz
bootstrap-70bd9b936fe02917def4b142ff2dacbb5526c6c6.zip
CSS docs page: Use simpler HTML5 style for `multiple` boolean attribute of <select>
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index 95f9f095e..2820a9d70 100644
--- 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>