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.