Decreasing height of bootstrap 3.0 navbar

前端 未结 9 1803
一向
一向 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

    Working solution:

    Bootstrap 3.0 by default has a 15px padding on top and bottom, so we just need to override it!

    For example:

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

提交回复
热议问题