Increase bootstrap dropdown menu width

前端 未结 7 810
悲哀的现实
悲哀的现实 2020-12-30 19:09

wondering if anyone has any tips on how to increase the dropdown width?

I have a row containing two columns with a a bit of javascript that slides the dropdown up an

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-30 20:04

    Usually the desire is to match the menu width to the width of the dropdown parent. This can be achieved easily like so:

    .dropdown-menu {
      width:100%;
    }
    

提交回复
热议问题