Custom height Bootstrap's navbar

后端 未结 4 1725
一个人的身影
一个人的身影 2020-12-13 04:17

I want a header with a height of 150px which contains a navbar. The navbar should be vertically centered in the header.

HTML:



        
4条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 04:50

    You need also to set .min-height: 0px; please see bellow:

    .navbar-inner {
        min-height: 0px;
    }
    
    .navbar-brand,
    .navbar-nav li a {
        line-height: 150px;
        height: 150px;
        padding-top: 0;
    }
    

    If you set .min-height: 0px; then you can choose any height you want!

    Good Luck!

提交回复
热议问题