I'm currently facing an issue with displaying monetary value information in a Bootstrap 4 table in responsive mode. Here's a breakdown of my problem:
Here is the HTML code snippet I am using:
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>$ 1,543,3345,432</td>
<td>$ 1,456,334,4545</td>
<td>$ 1,000,0202</td>
</tr>
</tbody>
</table>
</div>
The table displays perfectly on PC: https://i.sstatic.net/3yUub.png
However, when viewed in responsive mode, the problem arises: https://i.sstatic.net/UzfbB.png
What I aim for is to make it appear the same on both PC and responsive modes. I've tried adjusting the CSS in various ways but haven't found a solution yet.
Any help would be greatly appreciated!