How to disable stacking of bootstrap justified tabs on small screens

后端 未结 9 2163
我寻月下人不归
我寻月下人不归 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:52

    There is a really simple way to prevent stacking:

    CSS:

    .nav li {
        display:table-cell !important;
    }
    

    I searched for this and was annoyed by answers involving custom building bootstrap (I use CDN), and LESS (which I don't use)

    This works great for me...

提交回复
热议问题