Bootstrap horizontal scrollable tab bar

后端 未结 1 844
情深已故
情深已故 2020-12-31 07:06

I am creating an app in Bootstrap 3 with a tab bar. I am dynamically adding and removing tabs. This all works great, what I would like to do though is to have the tab bar be

1条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-31 07:30

    Here is an example:

    (Not working in snippet for some reason, so here is a link to Bootply : http://www.bootply.com/oROUAMwsG1)

    .nav-tabs {
      overflow-x: auto;
      overflow-y: hidden;
      display: -webkit-box;
      display: -moz-box;
    }
    .nav-tabs>li {
      float: none;
    }
    
    
     
    

    I'm in Section 1.

    I'm in Section 2.

    0 讨论(0)
提交回复
热议问题