Bootstrap navbar justify / span menu items occupying full width

前端 未结 6 1339
粉色の甜心
粉色の甜心 2020-12-08 00:38

I use the default Twitter Bootstrap responsive navbar (without the logo and search), but I want the menu items to be spanned, occupying the full width of the menu bar.

6条回答
  •  春和景丽
    2020-12-08 01:15

    Another solution: Media Queries that adjust menu padding for each item:

    @media (max-width: 1200px) {
    
      .navbar .nav > li {
          padding: 0 4px 0 3px;
      }
    
    }
    
    @media (min-width: 1200px) {
    
      .navbar .nav > li {
          padding: 0 20px 0 20px;
      }
    
    }
    

提交回复
热议问题