Changing active dropdown tab background color in bootstrap 3.0

前端 未结 4 656
北荒
北荒 2021-02-04 10:50

I am using the following css to change background color of navbar dropdown active link.

.navbar .nav > li.dropdown.ope         


        
4条回答
  •  醉酒成梦
    2021-02-04 11:33

    You should fint the exact class of the dropdown menu. It could be in your nav or not. I changed the active class color of the pagination property of the Bootstrap Theme like this:

    ul.dropdown-menu>li.active>a:hover{
        background: #419641 !important;
    }
    
    ul.dropdown-menu>li.active>a{
        background: #51AB51 !important;
    }
    

提交回复
热议问题