Twitter bootstrap 3 在引导3中更改导航选项卡高度

Twitter bootstrap 3 在引导3中更改导航选项卡高度,twitter-bootstrap-3,height,navbar,Twitter Bootstrap 3,Height,Navbar,有没有办法改变导航标签的高度? 我的任务是设置高度,以便我可以在此栏中插入图片。要仅更改Boostrap导航栏的高度,您只需执行以下操作: .navbar-fixed-top { height: 70px; /* Whatever you want. */ } HTML 谢谢-但我需要更改导航标签而不是导航条,它更改了绿线和标签之间的距离,但不是酒吧本身的高度。我想在每个标签上插入一张大照片。 CSS li{ position:absolute; mar

有没有办法改变导航标签的高度?
我的任务是设置高度,以便我可以在此栏中插入图片。

要仅更改Boostrap导航栏的高度,您只需执行以下操作:

.navbar-fixed-top {
    height: 70px; /* Whatever you want. */
}
HTML



谢谢-但我需要更改导航标签而不是导航条,它更改了绿线和标签之间的距离,但不是酒吧本身的高度。我想在每个标签上插入一张大照片。
CSS

li{
    position:absolute;
    margin-left:0px;
    height:43px;
}
li.active{
    border-bottom:none;
}
<div class="tabbable" >
    <ul class="nav nav-tabs" ><!--tabs-->
          <li style="" id="logintab">
               <a href="#pane_login" data-toggle="tab" id="logintab_a">Login</a></li>
          <li class="active" id="reg_tab" >
              <a href="#pane_reg" data-toggle="tab" id="regtab_a">Registration</a></li>
    </ul>
    <div class="tab-content"><!--login tab content-->
        <div id="pane_login" class="tab-pane active">
        </div>
     </div>

     <div class="tab-content"><!--login tab content-->
        <div id="pane_register" class="tab-pane active">
        </div>
     </div>
</div>