I have search around regarding this whitespace area while coding with html. But I still cannot resolve mine. My problem is that there is always a whitespace after the image of abclogo no matter what i change in the table style. I would like to see the image unseparated from the next line which shows 31 July 2012
<table style="vertical-align: bottom; background-color: rgb(0, 136, 64); width: 100%;">
<tbody>
<tr>
<a href="www.abc.com"><img style="border: 0; width:>800px;"alt="Logo of abc" src="abclogo.jpg"></a>
</tr>
<tr>
<td style="text-align: right; padding-right: 15px;">31 July 2012</td>
</tr>
</tbody>
</table>
Add
cellspacing=0 cellpadding=0to the table tag. Or useborder-collapse: collapse;.Also add
display: block;to the image.