Decreasing height of bootstrap 3.0 navbar

前端 未结 9 1811
一向
一向 2020-12-02 04:23

I am trying to decrease bootstrap 3.0 navbar height which is used with fixed top behavior. Here i am using code.

HTML

9条回答
  •  天命终不由人
    2020-12-02 05:16

    I think we can write this fewer styles, without changing the existing color. The following worked for me (in Bootstrap 3.2.0)

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

    The last one ('navbar-brand') is actually needed only if you have text as your 'brand' name.

提交回复
热议问题