I am facing problem in bootstrap table where I have columns that doesn't fit in screen so I want to handle that in bootstrap-table by giving horizontal scrollbar there.
CodePudding user response:
You can use bootstrap provided classes to achieve this,
<div>
<div >
<table style="width: 800px;">
<tr>-</tr>
</table>
</div>
CodePudding user response:
You can add class ".table-responsive"
<div >
<table >
...
</table>
</div>
reference: https://getbootstrap.com/docs/4.1/content/tables/
