I am trying to add a scroll bar to the drop-down menu, so when the user clicks on the menu, he will not show all the options to the 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 am trying to use this css, but it only works with the menu itself and not with the parameters.
select {
height:50px;
overflow-y: scroll;
}
Any thoughts? Many thanks.
source
share