I need help adding a scrollbar to a specific column in an HTML table. Take a look at this scenario https://jsfiddle.net/6wpdc4tL/:
https://i.stack.imgur.com/svzIg.png
This table should have two scrollbars, one for the light blue SCROLL column and another for the light green SCROLL2 column. Each scrollbar should only affect its respective column and scroll the entire column at once. The Row and Sec Row columns should remain the same width and not be affected by the scroll.
<table>
<tr>
<th class="headcol">1</th>
<td class="long1">SCROLL SCROLL SCROLL SCROLL</td>
<th class="middlecol">1</th>
<td class="long2">SCROLL2 SCROLL2 SCROLL2 SCROLL2</td>
</tr>
<tr>
<th class="headcol">2</th>
<td class="long1">SCROLL SCROLL SCROLL SCROLL</td>
<th class="middlecol">2</th>
<td class="long2">SCROLL2 SCROLL2 SCROLL2 SCROLL2</td>
</tr>
</table>
Can someone guide me on how to add a scrollbar that specifically scrolls one column in an HTML table?