I am having a heck of a time. I haven't been doing this too long. I am trying to get an image to fit into a table cell so that the background of the cell doesn't show. Now the image is only 60 high. Even if I make the height = "50", there is still a line showing at the bottom of the image running horizontally. I am enclosing just a simple test page that I can't get to work right. Maybe somebody can tell me what I am doing wrong.
Thanks.
Thanks.
Code:
<html>
<head>
</head>
<body bgcolor="blue">
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="silver">
<tbody>
<tr>
<td bgcolor="white" height="60px">
<asp:Image id="Image1" border="0" runat="server" ImageUrl="vic.gif"></asp:Image>
</td>
</tr>
<tr>
<td>
<asp:Image id="Image2" border="0" runat="server" ImageUrl="vic.gif"></asp:Image>
</td>
</tr>
</tbody>
</table>
</body>
</html>