Bootstrap 3 - Change dropdown background colour

前端 未结 4 713
灰色年华
灰色年华 2021-01-26 03:46

I\'m quite new to Bootstrap, I\'ve set up a dropdown pill and played around with the colours.

What I\'d like to do is change the colour of the dropdown title pill after

4条回答
  •  野性不改
    2021-01-26 04:19

    Use following css:

    .nav .open>a, .nav .open>a:hover, .nav .open>a:focus{
    background-color: red;
    }
    .nav-tabs>li>a:hover {
    background-color: red;
    }
    

    DEMO

提交回复
热议问题