Forum Moderators: open
<body>
<table cellpadding="0" cellspacing="0" align=center border="0">
<tr><td>
<img src="top.jpg" width="277" height="100">
</td></tr>
<tr><td>
<img src="middle.jpg" width="277" height="100">
</td></tr>
<tr><td>
<img src="bottom.jpg" width="277" height="100">
</td></tr>
</table>
</body>
I view this page at firefox without any problem, but in IE, there are spacing between images. These three images suppose is one image. I tried to align on the top and bottom images, but with no luck.
Could someone please teach me how to solve this problem.
Thanks.
I don't generally do tables but it seems to be where you started the <img>'s that's the problem.
try this?
<table border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="top.jpg" width="277" height="100"></td>
</tr>
<tr>
<td><img src="middle.jpg" width="277" height="100"></td>
</tr>
<tr>
<td><img src="bottom.jpg" width="277" height="100"></td>
</tr>
</table>