Bootstrap 3 navbar active li not changing background-color

后端 未结 6 1036
借酒劲吻你
借酒劲吻你 2020-12-24 03:03

I have added custom CSS for the active li element of navbar. But it seems to be picking the default color. Other colors such as navbar BG and text color seems to have change

6条回答
  •  误落风尘
    2020-12-24 03:53

    You need to add CSS to .active instead of .active a.

    Fiddle: http://jsfiddle.net/T5X6h/2/

    Something like this:

    .navbar-default .navbar-nav > .active{
        color: #000;
        background: #d65c14;
    }
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        color: #000;
        background: #d65c14;
    }
    

提交回复
热议问题