Twitter bootstrap dropdown goes outside the screen

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

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

 


        
8条回答
  •  傲寒
    傲寒 (楼主)
    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

提交回复
热议问题