Change color of bootstrap navbar on hover link?

后端 未结 13 1838
感情败类
感情败类 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 16:59

    For Bootstrap 3 this is how I did this based on the default Navbar structure:

    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
        background-color: #FFFF00;
        color: #FFC0CB;
    }
    

提交回复
热议问题