How to justify navbar-nav in Bootstrap 3

前端 未结 7 467
栀梦
栀梦 2020-12-01 07:16

I\'m attempting to justify a navbar (make the navbar contents stretch) in Bootstrap 3. I\'ve added margin: 0 auto; max-width: 1000px; to the nav* c

相关标签:
7条回答
  • 2020-12-01 08:04

    You can justify the navbar contents by using:

    @media (min-width: 768px){
      .navbar-nav{
         margin: 0 auto;
         display: table;
         table-layout: fixed;
         float: none;
      }
    }  
    

    See this live: http://jsfiddle.net/panchroma/2fntE/

    Good luck!

    0 讨论(0)
提交回复
热议问题