Despite my efforts, the responsive bootstrap 4 table is not adhering to my fixed column width styles.
<table class="table table-responsive table-sm table-striped table-hover">
<thead>
<tr>
<th>
<input type="checkbox"/>
</th>
<th style="width: 150px;">Options</th>
.. additional columns!
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" /> </td>
<td style="width: 150px;"> some text </td>
.. additional columns!
</tr>
</tbody>
</table>
Even though I can horizontally scroll the table, the Options column is not adjusting its size as intended with the specified style attribute.