How to make Twitter Bootstrap menu dropdown on hover rather than click

后端 未结 30 2604
小鲜肉
小鲜肉 2020-11-22 02:08

I\'d like to have my Bootstrap menu automatically drop down on hover, rather than having to click the menu title. I\'d also like to lose the little arrows next to the menu t

30条回答
  •  执念已碎
    2020-11-22 02:27

    This should hide the drop downs and their carets if they are smaller than a tablet.

    @media (max-width: 768px) {
        .navbar ul.dropdown-menu, .navbar li.dropdown b.caret {
            display: none;
        }
    }
    

提交回复
热议问题