I have a table with an image and even though I set the table border, cell spacing, and cell padding to 0 the image still has vertical space below it.
When I add a second image below the first there is vertical spacing between them.PHP Code:<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="image1.gif" />
</td>
</tr>
</table>
How can I prevent this?PHP Code:<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="image1.gif" />
</td>
</tr>
<tr>
<td>
<img src="image2.gif" />
</td>
</tr>
</table>




Reply With Quote