I need vertical scrollbar for select box options list. I have to show only first few items of the list. I don\'t have any control over number of items in the list.
Overflow-y doesn't work on select boxes. What I would recommend using is size on your select box. In my example I've used 5 as the value, you can obviously change this to your liking.
.wrapper{
width:200px;
padding:20px;
height: 150px;
}
Edit: Amended my answer to include some js to provide OP with the desired result.