add options to the examples so they render properly

This commit is contained in:
Mark Otto 2016-05-08 22:53:32 -07:00
parent a803ab7f58
commit a6d48b7ee3
1 changed files with 9 additions and 3 deletions

View File

@ -609,9 +609,15 @@ Set heights using classes like `.form-control-lg`, and set widths using grid col
{% endexample %}
{% example html %}
<select class="form-control form-control-lg"></select>
<select class="form-control"></select>
<select class="form-control form-control-sm"></select>
<select class="form-control form-control-lg">
<option>Large select</option>
</select>
<select class="form-control">
<option>Default select</option>
</select>
<select class="form-control form-control-sm">
<option>Small select</option>
</select>
{% endexample %}
## Column sizing