how to make twitter bootstrap submenu to open on the left side?

前端 未结 12 2119
余生分开走
余生分开走 2020-12-13 05:12

I was trying to create twitter bootstrap submenu in dropdown menu, but I\'ve got a problem: I have dropdown menu in the top right corner of the page and that menu has one mo

12条回答
  •  天命终不由人
    2020-12-13 06:15

    The correct way to do the task is:

    /* Submenu placement itself */
    .dropdown-submenu > .dropdown-menu { left: auto; right: 100%; }
    /* Arrow position */
    .dropdown-submenu { position: relative; }
    .dropdown-submenu > a:after { position: absolute; left: 7px; top: 3px; float: none; border-right-color: #cccccc; border-width: 5px 5px 5px 0; }
    .dropdown-submenu:hover > a:after { border-right-color: #ffffff; }
    

提交回复
热议问题