PS
1
Getting Spaces Between Two Tables in Outlook 2013
Hi,
Can anyone help me to get rid of extra spaces between 2 tables.,
i.e., I am having two tables
<table>
<tr>
<td>
<table>
<tr>
<td>
<img src="transparentImg.gif" width="20" height="20"/>
</td>
</tr>
<table>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<td>
<img src="transparentImg.gif" width="20" height="20"/>
</td>
</tr>
<table>
</td>
</tr>
Now I am getting extra space between these two tables in outlook2013.How to overcome this?Any Suggestion plz..
Thanks in advance,
Poornima
Within the table tags make sure to include cellpadding, cellspacing and border set to 0.
Like so:
<table width="40" border="0" cellpadding="0" cellspacing="0">
I overcome this space by removing padding given to the table
Thanks Edward