How to center navbar elements vertically (Twitter Bootstrap)?

后端 未结 4 1660
鱼传尺愫
鱼传尺愫 2020-12-15 19:05

This is my CSS/LESS CSS code so far:

//make navbar taller
@navbarHeight: 60px;

//make navbar link text 18px
.navbar-inner {
    font-size: 18px;
}

//make n         


        
4条回答
  •  醉梦人生
    2020-12-15 19:29

    I've just had a similar issue with Bootstrap 3 but with the brand eliment. In the end I used the following css:

    .navbar-brand {
      font-size: 3em;
      line-height: 1em;
    }
    

    My nav bar has increased in size due to a 50px image, with top and bottom margins of 10px. Not sure if that is of any help.

提交回复
热议问题