Increase bootstrap dropdown menu width

前端 未结 7 831
悲哀的现实
悲哀的现实 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 19:53

    If you have BS4 another option could be:

    .dropdown-item { 
      width: max-content !important;
    }
    
    .dropdown-menu {
    
        max-height: max-content;
        max-width: max-content;
    }
    

提交回复
热议问题