Bootstrap 3: How to make a centered navbar

后端 未结 5 1417
情深已故
情深已故 2020-12-13 10:39

I\'ve seen some hacks for Bootstrap <=2 but I\'m using v3 and I want to make a horizontal row of links that are centered within the row/container. Here\'s my markup:

5条回答
  •  甜味超标
    2020-12-13 11:20

    #menu-main{
      width: 100%;
      text-align: center;
      display:block;
    }
    #menu-main li {
        display: inline-block;
        float: none;
        vertical-align: top;
    }
    #menu-main a{
      display: block;
      padding: 10px;
    }
    
    
    

提交回复
热议问题