0
Strange error in line spacing for Outlook 2010 and 2013
I have this problem that has been bothering me all day. I cannot seem to find an answer anwywehere. It seems taht if you ahev two rows of nested tables (two <tr>
rows), then things can go really wrong with the second row.
If you have two rows of nested tables:
```
<table width="100%" style="border-collapse:collapse; table-layout:fixed;" border="0" cellspacing="0" cellpadding="0" id="wrappertable">
<tr>
<td align="center">
<!--nested table 2-->
<table cellpadding="0" cellspacing="0" border="0" width="700">
<tr>
<td>
THIS ONE IS OKAY
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<!--nested table 2-->
<table cellpadding="0" cellspacing="0" border="0" width="700">
<tr>
<td>
THIS ONES GOES WONKY
</td>
</tr>
</table>
</td>
</tr>
</table>
Then the second nested table(s) row will go a bit weird:
I have looked online, and seen nothing about this error. The ghosting will not work, subscribing hard heights witn !important
didn't help, and there isn't anything wrong with the code. I even changed the blocks from row 1 and 2 AND placed the second row into an entirely NEW table. Nothing. In Outlook 2010 and 2013 it STILL looks like this when delivered.
Anyone have any ideas?