Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

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.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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