Bootstrap 3: how to make head of dropdown link clickable in navbar

前端 未结 15 844
暗喜
暗喜 2020-12-07 09:23

I\'m using the default navbar and a couple of the list items are dropdowns. I\'m not able to click the link that triggers the dropdown. I know that I could just add a duplic

15条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 10:22

    1: remove dropdown-trigger:

    data-toggle="dropdown"
    

    2: add this your css

    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        margin-top: 0px;
    }
    

    posted for the people how stumbled upon this

提交回复
热议问题