I am trying to figure this out. Here is the sample code

<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</select>

How do you make this scrollable? Say you want it to only show 3 options, scrollable to the last one and still a drop down menu. Many have suggested using the attr "size" that comes with <select>. That will give out scrollable effect but not what I have in mind.

So is this even possible? I have been researching the forum, and many suggested to use <div> tag with style overflow auto. But I am just wondering if it is possible to create scrollable drop down menu.

Thanks in advance.

link|improve this question

43% accept rate
feedback

1 Answer

it becomes scollable by default if the length exzeeds a limit. i don't know whether this is browser specific but in chromed 11 / ubuntu select dropdowns become scrollable with the 21th entry.

link|improve this answer
hmm.. can it be controlled to more specific needs? – Nebby Aug 2 '11 at 16:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.