How to justify navbar-nav in Bootstrap 3

前端 未结 7 488
栀梦
栀梦 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 07:45

    I know this is an old post but I would like share my solution. I spent several hours trying to make a justified navigation menu. You do not really need to modify anything in bootstrap css. Just need to add the correct class in the html.

       
    

    This CSS code will simply remove the navbar-brand class when the screen reaches 768px.

    media@(min-width: 768px){
       .navbar-brand{
            display: none;
        }
    }
    

提交回复
热议问题