Bootstrap 3: How to make a centered navbar

后端 未结 5 1416
情深已故
情深已故 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:09

    I suggest to give the navbar a side margin of 25%:

    CSS

    @media (min-width: 768px) {
      .centered-ul{
        margin-left:25%;
      }
    }
    

    HTML

    
    

提交回复
热议问题