I have come across this issue and have yet to be able to find a solution to it. With an html e-mail I have found that in some Outlook programs it will collapse the cell. Both 2007/2010 For instance:
<tr>
<td witdh="10"><img></td>
<td witdh="80">Copy</td>
<td witdh="10"><img></td>
</tr>
What happens is that Outlook ignores the width of the middle column's cell. It also doesn't matter if I use CSS for the widths.
<tr>
<td style="width:10px;"><img></td>
<td style="width:80px;">Copy</td>
<td style="width:10px;"><img></td>
</tr>
This has the same results.
The thing I haven't been able to figure out, is the setting in Outlook that causes this collapsing of the cell's width. And typically, it only happens in Outlook for the CEO of our company. I no longer code a cell with copy in it this way anymore as I have a more rock solid way that works, but sometimes marketing thinks they know what they are doing and changes the code on me thinking it will work, when I know it will not on the CEO's computer in Outlook.
Does anybody know what setting in Outlook causes this? I'd love to have this setting on my computer so I don't need to but the CEO to test it.