Three option select no properties |
Three option select size=1 |
Three option select size=2 |
Three option select size=3 |
Three option select size=4 |
combobox box with three items in drop down |
combobox box with three items in drop down |
list box with three items, two items showing |
list box with three items, all three items showing |
list box with three items, all three items showing with one blank line |
<select>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
|
<select size=1>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
|
<select size=2>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
|
<select size=3>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
|
<select size=4>
</select>
|