Posts: 2,285
Name: Keith Marshall
Location: West Hartford, CT
|
There has always been an instance in IE (especially in xhtml format) in which whenever you have an image inside a TD cell, it will always put a gap under the image making the TD cell a little taller than the image. I found a workaround with this by placing a <BR> tag after the image, this seems to always work.
HTML Code:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="./example.gif" width="100" height="100" border="0" alt="" /><br />
</td>
</tr>
</table>

__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|