Consider a scenario where there is a table:
<table>
<tr>
<td>
Hello How are you this is a TEST!
</td>
<tr>
<tr>
<td>
<table>
<tr>
<td>
Hello this a test 2!
</td>
</tr>
</table>
<td>
<tr>
</table>
In this illustration, there is only one TD in the main table, yet three TDs are needed in the child table. Following the above structure results in output like this:
Hello How are you this is a TEST!
Hello this is Test 2!
However, the inner table introduces a padding-left of approximately 1-2 pixels. Is there a method to align both statements perfectly?