How do you decrease navbar height in Bootstrap 3?

前端 未结 9 942
终归单人心
终归单人心 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:36

    The answer above worked fine (MVC5 + Bootstrap 3.0), but the height returned to the default once the navbar button showed up (very small screen). Had to add the below in my .css to fix that as well.

    .navbar-header .navbar-toggle {
        margin-top:0px;
        margin-bottom:0px;
        padding-bottom:0px;
    }
    

提交回复
热议问题