Bootstrap 3 : Vertically Center Navigation Links when Logo Increasing The Height of Navbar

后端 未结 6 776
说谎
说谎 2020-12-07 20:32

I\'m new to the bootstrap framework.

Logo Increasing Height of NavBar:

In my navigation bar, I have inserted a logo that has a height of 50p

6条回答
  •  感情败类
    2020-12-07 21:34

    Matt's answer is fine, but just to avoid this to propagate to other elements inside the navbar (like when you also have a dropdown), use

    .navbar-nav > li > a {
       line-height: 50px;
    }
    

提交回复
热议问题