bootstrap table overflow container code example
Example 1: table bootstrap with scrool
<div style="height: 600px;overflow: scroll;">
<!-- change height to increase the number of visible row -->
<table></table>
</div>
Example 2: bootstrap table dense
<!-- BOOTSTRAP V3 -->
<table class="table table-condensed">
...
</table>
<!-- BOOTSTRAP v4 -->
<table class="table table-sm">
...
</table>