Change color of bootstrap navbar on hover link?

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

    .navbar-default .navbar-nav > li > a{
      color: #e9b846;
    }
    .navbar-default .navbar-nav > li > a:hover{
      background-color: #e9b846;
      color: #FFFFFF;
    }

    0 讨论(0)
提交回复
热议问题