mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
CSS docs page: Use simpler HTML5 style for multiple
boolean attribute of <select>
This commit is contained in:
parent
c9c2418a47
commit
70bd9b936f
1 changed files with 2 additions and 2 deletions
4
css.html
4
css.html
|
@ -1403,7 +1403,7 @@ For example, <code><section></code> should be wrapped as inline.
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
<h3>Selects</h3>
|
<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">
|
<form class="bs-example">
|
||||||
<select class="form-control">
|
<select class="form-control">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
|
@ -1413,7 +1413,7 @@ For example, <code><section></code> should be wrapped as inline.
|
||||||
<option>5</option>
|
<option>5</option>
|
||||||
</select>
|
</select>
|
||||||
<br>
|
<br>
|
||||||
<select multiple="multiple" class="form-control">
|
<select multiple class="form-control">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
<option>3</option>
|
<option>3</option>
|
||||||
|
|
Loading…
Reference in a new issue