Typeahead - Scrollable Dropdown Menu

后端 未结 2 1610
别跟我提以往
别跟我提以往 2021-02-15 11:49

Looks like the CSS isn\'t working for my Typeahead. I am trying to reproduce the Scrollable Dropdown Menu like on https://twitter.github.io/typeahead.js/examples

Here is

2条回答
  •  别跟我提以往
    2021-02-15 12:50

    See this GitHub issue. There is an issue with the scrollable dropdown example.

    Update your CSS to:

     #scrollable-dropdown-menu .tt-menu {
       max-height: 150px;
       overflow-y: auto;
       background-color: red;
     }
    

提交回复
热议问题