How do you decrease navbar height in Bootstrap 3?

前端 未结 9 935
终归单人心
终归单人心 2020-12-07 10:56

I want to make my navbar in BS3 to be of height 20px. How do I do this?

I\'ve tried the following:

.tnav .navbar .container { height: 28px; }
         


        
9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 11:28

    bootstrap had 15px top padding and 15px bottom padding on .navbar-nav > li > a so you need to decrease it by overriding it in your css file and .navbar has min-height:50px; decrease it as much you want.

    for example

    .navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;}
    .navbar {min-height:32px !important}
    

    add these classes to your css and then check.

提交回复
热议问题