Why is content extending beyond containing BootStrap “span” and overlapping, at some resolutions?
后端 未结 4 1188
北荒
北荒 2020-12-31 05:07

JSFiddle: http://jsfiddle.net/ardave/8DR6n/3/ Full Screen JSFiddle: http://jsfiddle.net/ardave/8DR6n/3/embedded/result/

I\'ve got these three divs at the bottom rig

4条回答
  •  温柔的废话
    2020-12-31 05:41

    You can apply the style = "overflow: auto;" to put a horizontal scroll bar at your table. Thus the design will still remain responsive. Follow the code:

    .table-scrollable{
        overflow: auto;
    }
    

    And use it on your parent div:

提交回复
热议问题