Typeahead.js interferes with Bootstrap input groups

后端 未结 5 2064
无人共我
无人共我 2021-02-03 23:27

How do I keep Typeahead.js from splitting up my Twitter Bootstrap 3 input groups? Whenever I point the Typeahead javascript at a text area that\'s part of an input group, the jo

5条回答
  •  春和景丽
    2021-02-04 00:16

    Bootstrap v4 solution:

    .input-group > .twitter-typeahead {
       flex: 1 1 auto;
       width: auto;
    }
    

提交回复
热议问题