<div class="text-center" style="align-items: center; justify-content: center;">
<table style="border: 1rem;width: 100%;margin-left:auto;margin-right:auto;">
<tr><th>Id</th><th>Quantity</th></tr>
<tr><td>1</td><td>2</td></tr>
<tr><td>3</td><td>4</td></tr>
<tr><td>4</td><td>2</td></tr>
</table>
</div>
I am having trouble aligning my table to the center on the page. I have tried using class=text-center
, and
align-items: center; justify-content: center;
but nothing seems to work.