How to left align bootstrap 3 dropdown menu?

后端 未结 7 1499
借酒劲吻你
借酒劲吻你 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:57

    Adding this style element to the dropdown

      will align the dropdown to the left side of the menu item:

      left:0;
      

      See this Bootply which targets the .dropdown-menu.pull-left and adds a left:0;. This should solve your problem.


      Update

      I see that Bootstrap has deprecated pull-right and pull-left as of Bootstrap 3.1.0. Use dropdown-menu-left class to use built-in Bootstrap css to align the dropdown on the left edge so you don't need extra CSS. See this updated Bootply

提交回复
热议问题