Scrollable drop down lists in react-bootstrap

前端 未结 3 1791
遇见更好的自我
遇见更好的自我 2021-01-17 19:53

I am trying to create some simple birth date dropdowns and would like to have scroll bars on the dropdown lists with a fixed number of items shown. How can I do this with re

3条回答
  •  悲&欢浪女
    2021-01-17 20:31

    use this style for scrollable DropdownButton

    ul.dropdown-menu {
        max-height: 500px;
        overflow-y: scroll;
    }
    

提交回复
热议问题