image in tables - frontpage/html help! The following table has one row and 3 cells. Cell 1 and 2 has an image each. I want both images to be touching. So their cell's alignment are "right" and "left" respectively:
<table width="900" border="0" cellpadding="0" cellspacing="0">
<tr height="135">
<td align="right" width="140" height="135" valign="bottom" bgcolor="#3568FF">
<img border="0" src="A.jpg" hspace="0" width="120" height="120"></td>
<td align="left" width="600" height="135" valign="middle" bgcolor="#3568FF">
<img border="0" src="B.jpg" hspace="0" width="468" height="100"></td>
<td bgcolor="#3568FF"></td>
</tr></table>
I don't understand why image A and B don't touch when displayed by IE. Frontpage displays it ok when in normal editing view, but in preview they don't touch too.
Thanks! |