How to left align bootstrap 3 dropdown menu?

后端 未结 7 1500
借酒劲吻你
借酒劲吻你 2021-02-05 01:30

\"enter

In the above image MenuItems are align to right side of the MyMenu, I needed to le

7条回答
  •  粉色の甜心
    2021-02-05 01:38

    As the answers given above are too old, would like to provide working solution for Bootstrap 3.3.7.

    Use the given css on your .dropdown-menu div :

    .dropdown-left-manual {
      right: 0;
      left: auto;
      padding-left: 1px;
      padding-right: 1px;
    }
    

    Explaination :

    • "right:0;" to make then ending of menu inline with end of dropdown button.
    • "left:auto;" to override the left:0 given in dropdown-menu class by bootstrap.
    • paddings are used to correct hovers on menu item, can be ignored.

提交回复
热议问题