Change color of bootstrap navbar on hover link?

后端 未结 13 1834
感情败类
感情败类 2020-12-07 16:42

I want to know how to change the color of the links when you hover over them in the nav bar, as currently they are an ugly color.

Thanks for any suggestions?

13条回答
  •  隐瞒了意图╮
    2020-12-07 17:11

    Use Come thing link this , This is Based on Bootstrap 3.0

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
        background-color: #977EBD;
        color: #FFFFFF;
    }
    
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
        background-color: #977EBD;
        color: #FFFFFF;
    }
    

提交回复
热议问题