Here is the html code that I am working with:
<table border="1" style="width:100%;padding-left:12.4em;" bordercolor="F0C347">
<tbody>
<tr>
<td><b>Assert Name </b></td>
<td><b>Expected</b></td>
<td><b>Actual</b></td>
<td><b>Assert Expression</b></td>
</tr>
<tr>
<td>Name</td>
<td> true</td>
<td> true</td>
<td>assert.equal(true,spy.calledOnce);</td>
</tr>
</tbody></table>
You can view the sample output here.
I noticed that the border in the table is creating extra white space on the left side. I would like the border to start directly from the 'Assert Name' column. How can I achieve this while keeping the padding as it is?
Note: The padding must remain unchanged.