Bootstrap horizontal scrollable tab panel content

后端 未结 1 469
自闭症患者
自闭症患者 2021-01-29 12:18

I\'m trying to figure out the horizontal version of https://stackoverflow.com/a/25298473/7835535. Instead of having the content scroll vertically, I want the content to scroll h

相关标签:
1条回答
  • 2021-01-29 12:31

    Here You go Fiddle: http://jsfiddle.net/51n56p94/

    You need to add this css

    .tab-pane{
        width:1000px;
    
    }
    .tab-content{
      overflow-x:scroll;
    }
    
    0 讨论(0)
提交回复
热议问题