I am trying to create a table with rows starting from different positions like this
12345
678910
This is my code
<table class="center">
<tr style="padding-right: 22%">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr style="padding-left:18px">
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
</table>
Unfortunately, the padding does not seem to work as intended