Create Responsive Tabs using Bootstrap (They should get stacked automatically on smaller screens)

前端 未结 6 873
悲哀的现实
悲哀的现实 2021-01-31 10:41

How can I create responsive tabs which get stacked automatically using bootstrap. The code for my navs is -

6条回答
  •  野的像风
    2021-01-31 11:22

    If you find that 480 doesn't do it (I have long tab titles), you can always change your max-width. I used:

    @media (max-width: 991px) { 
     .nav-tabs > li {
        float:none;
     }
    }
    

    and it works like a charm.

提交回复
热议问题