Bootstrap 3 navbar and collapse menu different background colors?

后端 未结 2 1326
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-07 12:05

I would like to have the Navbar background be a different color than the background of the collapsed menu.

2条回答
  •  面向向阳花
    2021-02-07 12:44

    You can do it like this

    .navbar-default {
        border-color: white;
        background-color: #FF2032;
     }
    
     @media only screen and (max-width: 768px) {
        .navbar-default .navbar-collapse {
            border-color: white;
            background-color: #e87373;
         } 
     }
    

    check this fiddle , i hope it answers your question

提交回复
热议问题