How to add vertical scrollbar to select box options list?

后端 未结 4 1086
时光取名叫无心
时光取名叫无心 2021-01-03 03:32

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.

4条回答
  •  孤独总比滥情好
    2021-01-03 04:08

    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.

提交回复
热议问题