When the content of the second column overflows then all the page content is scrolled.
How can the first column be fixed in the same place when scrolling the second column on overflow-x?
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<div class="row">
<div class="col-3 bg-primary">
</div>
<div class="col-9">
<table class="table">
<tr>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d1</td>
<td>d2</td>
</tr>
</table>
</div>
</div>