make div responsive bootstrap 5 like table code example
Example 1: responsive table bootstrap 4
<div class="table-responsive-sm">
<table class="table">
...
</table>
</div>
Example 2: bootstrap table dense
<!-- BOOTSTRAP V3 -->
<table class="table table-condensed">
...
</table>
<!-- BOOTSTRAP v4 -->
<table class="table table-sm">
...
</table>