1

I want to have a Listbox, that does not allow multiple selections, and has a scrollbar if it has more than three items (I will be using PHP to dynamically update the contents). I saw this question, but I want it to only be three items high, so that it does not get bigger and bigger.

How would I do this?

4

2 回答 2

2

You should use the size attribute.

<select size="3">
    <option> test </option>
    <option> test </option>
    <option> test </option>
    <option> test </option>
    <option> test </option>
    <option> test </option>
</select>
于 2013-10-10T14:44:27.243 回答
1

Wouldn't that be a select box with the size attribute set?

<select name="select" size="3" id="select">
   <option value="1">Item 1</option>
</select>
于 2013-10-10T14:43:41.013 回答