OceanDesigner
Programmer
I have two images adjacent to each other. The first is written using the <img> tag. The second is used as a hyperlink and is written using the background property of the <td> tag. What I found is that the <img> tag stretches the image to fit and the <td background=""> tag repeats the image to fit. I would like the stretch the latter so there is continuity between the two images. I appreceiate any ideas. The whole code is below:
Code:
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="35%" align="right"><img src="left.gif" width="20" height="20"></td>
<td width="30%" background="images/insidebg.gif" align="center" height="25">
<a class="white" href="WarrantyReportPrint.asp" target="_blank">
<b><font face="Verdana, Arial, Helvetica, sans-serif" size="2"></font></b>
</a>
</td>
<td width="35%" align="left"><img src="images/rightcorner.gif" width="20" height="20"></td>
</tr>
</table>