I am trying to add a scrollbar to a dropdown menu options so when user clicks the menu it won't show all the options all the way till end. I tried
<select name='menu'>
<option value='1'>first item</option>
<option value='2'>second item</option>
<option value='3'>third item</option>
<option value='4'>fourth item</option>
<option value='5'>fifth item</option>
<option>........
<option>........
//I have many options.....
</select>
I try this css but it only works on the menu itself, not options.
select {
height:50px;
overflow-y: scroll;
}
Any thoughts? Thanks a lot.
give a css to your select like
class="myDropDown"
and add the following cssfor reference: fiddle
This is also I nice way of handeling it :)
http://css-tricks.com/long-dropdowns-solution/
From the link above:
});