How to disable stacking of bootstrap justified tabs on small screens

后端 未结 9 2131
我寻月下人不归
我寻月下人不归 2020-12-24 06:51

I have seen this post, but being a new user I can\'t comment to ask for clarification.

I\'m using the justified nav tabs in Bootstrap and don\'t want them to stack o

9条回答
  •  一生所求
    2020-12-24 07:45

    LESS - Bootstrap

    This is the answer of @pjb converted into LESS. I'm currently using bootstrap.less so below is the style I implemented.

    @media (max-width: @screen-xs-max) {
    
      .nav-justified {
    
        > li {
          display: table-cell;
          width: 1%;
    
          > a {
            border-bottom: 1px solid @nav-tabs-justified-link-border-color !important;
            border-radius: @border-radius-base @border-radius-base 0 0 !important;
            margin-bottom: 0 !important;
          }
        }
      }
    }
    

提交回复
热议问题