aboutsummaryrefslogtreecommitdiff
path: root/docs/content/forms.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/forms.md')
-rw-r--r--docs/content/forms.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/content/forms.md b/docs/content/forms.md
index 7d274c2a0..1cf1e9c8e 100644
--- a/docs/content/forms.md
+++ b/docs/content/forms.md
@@ -236,6 +236,8 @@ Should you have no text within the `<label>`, the input is positioned as you'd e
### Selects
+Note that many native select menus—namely in Safari and Chrome—have rounded corners that cannot be modified via `border-radius` properties.
+
Use the default option, or add `multiple` to show multiple options at once.
{% example html %}
@@ -246,7 +248,11 @@ Use the default option, or add `multiple` to show multiple options at once.
<option>4</option>
<option>5</option>
</select>
+{% endexample %}
+For `<select>` controls with the `multiple` attribute, multiple options are shown by default.
+
+{% example html %}
<select multiple class="form-control">
<option>1</option>
<option>2</option>