I'm trying to create a table and in one of the cells, I wanna put a background image. It will display fine in IE, but it won't even show up with Netscape 4. I've been trying to figure out why, but can't seem to find an answer. I've even tried placing the image that I'm using as a background in the cell as just an image, but that won't work either. Here is a sample of my code:
<table width="167" height="705" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="12"><img src="images/PURPLE_top_left.gif" width="22" height="21"></td>
<td width="142" height="21" background="images/PURPLE_top_bar.gif"> </td>
<td width="13"><img src="images/PURPLE_top_right.gif" width="22" height="21"></td>
</tr>
<tr>
<td height="658" background="images/PURPLE_left_bar.gif"> </td>
<td bgcolor="A471A9"> </td>
<td align="left" valign="middle" background="images/PURPLE_right_bar.gif"><img src="images/PURPLE_right_bar.gif" width="22" height="1"></td>
</tr>
<tr>
<td><img src="images/PURPLE_bottom_left.gif" width="22" height="25"></td>
<td height="10" background="images/PURPLE_bottom_bar.gif"> </td>
<td><img src="images/PURPLE_bottom_right.gif" width="22" height="25"></td>
</tr>
</table>
<table width="167" height="705" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="12"><img src="images/PURPLE_top_left.gif" width="22" height="21"></td>
<td width="142" height="21" background="images/PURPLE_top_bar.gif"> </td>
<td width="13"><img src="images/PURPLE_top_right.gif" width="22" height="21"></td>
</tr>
<tr>
<td height="658" background="images/PURPLE_left_bar.gif"> </td>
<td bgcolor="A471A9"> </td>
<td align="left" valign="middle" background="images/PURPLE_right_bar.gif"><img src="images/PURPLE_right_bar.gif" width="22" height="1"></td>
</tr>
<tr>
<td><img src="images/PURPLE_bottom_left.gif" width="22" height="25"></td>
<td height="10" background="images/PURPLE_bottom_bar.gif"> </td>
<td><img src="images/PURPLE_bottom_right.gif" width="22" height="25"></td>
</tr>
</table>
Comment