Bootstrap 3 - Change dropdown background colour

前端 未结 4 666
灰色年华
灰色年华 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:08

    This will change the background/text color of the active class (inc. focus):

    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:focus {
        color: white;
        background-color: blue;
    }
    

提交回复
热议问题