Twitter bootstrap dropdown goes outside the screen

后端 未结 8 1116
失恋的感觉
失恋的感觉 2021-01-30 00:14

I want to implement twitter bootstrap dropdown menu, here\'s my code:

 


        
相关标签:
8条回答
  • 2021-01-30 01:12

    Since Bootstrap v3.1.0 adding .pull-right is deprecated on dropdown menus. A .dropdown-menu-right should be added to ul.dropdown-menu instead. Docs

    0 讨论(0)
  • 2021-01-30 01:12

    a solution that does not need modifying the HTML only the CSS is

    li.dropdown:last-child .dropdown-menu {
      right: 0;
      left: auto;
    }
    

    Its particularly usefull for dynamically generated menus where its not always possible to add the recommended class dropdown-menu-right to the last element

    0 讨论(0)
提交回复
热议问题