I have added an empty TR in a top of a table just to align correctly the tds below, but when i print the table this tr is visible with a small height :
<table>
<tr>
<td style="width: 10%;"></td>
<td style="width: 40%;"></td>
<td style="width: 16%;"></td>
<td style="width: 10%;"></td>
<td style="width: 7%;"></td>
<td style="width: 7%;"></td>
<td style="width: 10%;"></td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>E</td>
<td>F</td>
<td>G</td>
<td>H</td>
</tr>
<tr>
...
</tr>
...
</table>
I have tried to change the height to 0 but it doesn't work, can you please tell the best way to hide it totally without affecting the tds below.
Thanks a lot for your help