Setting the width of a dropdown list in Bootstrap 3.0

后端 未结 4 839
执笔经年
执笔经年 2020-12-05 07:04

How can I set the width of a dropdown triggering button in bootstrap 3.0 to be equal to the width of the dropdown list? Similar to what is achieved when using bootstrap-sele

4条回答
  •  广开言路
    2020-12-05 07:23

    If I understand correctly you want to style the menu width according to the larger option you have to override the min-width property of the .dropdown-menu list like:

    .dropdown-menu {
        min-width: 0px !important;
    }
    

    Demo: http://jsfiddle.net/faxyz/4/

提交回复
热议问题