Center content in responsive bootstrap navbar

后端 未结 11 2113
自闭症患者
自闭症患者 2020-11-22 08:40

I\'m having trouble centering my content in the bootstrap navbar. I\'m using bootstrap 3. I\'ve read many posts, but the CSS or methods used will not work with my code! I\'m

11条回答
  •  一向
    一向 (楼主)
    2020-11-22 08:48

    Use following html

    
    
    

    And css

    .navbar-nav {
      width: 100%;
      text-align: center;
    }
    .navbar-nav > li {
      float: none;
      display: inline-block;
    }
    .navbar-default {
      background-color: white;
      border-color: white;
    }
    .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus{
      background-color:white;
    }
    

    Modify according to your needs

提交回复
热议问题