aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-28 22:22:10 -0700
committerMark Otto <[email protected]>2013-07-28 22:22:10 -0700
commiteb56f7e4f4b91d6c1c85d3fbb98ad691a41676e1 (patch)
tree05d6a033c0c4cd2d98da962c8e943b5898a49c09 /css.html
parente74a25a3b80c915565cbcf76b5f7d69063894b58 (diff)
parent70bd9b936fe02917def4b142ff2dacbb5526c6c6 (diff)
downloadbootstrap-eb56f7e4f4b91d6c1c85d3fbb98ad691a41676e1.tar.xz
bootstrap-eb56f7e4f4b91d6c1c85d3fbb98ad691a41676e1.zip
Merge pull request #8737 from twbs/docs-html5-style-select-multiple
CSS docs page: Use simpler HTML5 style for `multiple` <select> attribute
Diffstat (limited to 'css.html')
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index 316d49455..c03d6f776 100644
--- a/css.html
+++ b/css.html
@@ -1425,7 +1425,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>
@@ -1435,7 +1435,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>