Bootstrap NavBar with left, center or right aligned items

前端 未结 10 1207
旧巷少年郎
旧巷少年郎 2020-11-21 11:24

In Bootstrap, what is the most platform-friendly way to create a navigation bar that has Logo A on the left, menu items in the center, and Logo B on the rig

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-21 11:47

    I needed something similar (left, center and right aligned items), but with ability to mark centered items as active. What worked for me was:

    http://www.bootply.com/CSI2KcCoEM

    
    

    CSS:

    @media (min-width: 768px) {
      .navbar-nav {
        width: 100%;
        text-align: center;
      }
      .navbar-nav > li {
        float: none;
        display: inline-block;
      }
      .navbar-nav > li.navbar-right {
        float: right !important;
      }
    }
    

提交回复
热议问题