Why does the following code result in borders between the cells?
<HTML>
<BODY>
<table width="100%" border=0>
<tr>
<td colspan=3 height=45 bgColor=silver></td>
</tr>
<tr>
<td height=500 width="15%" bgColor=gray></td>
<td height=500 width="70%" bgColor=silver></td>
<td height=500 width="15%" bgColor=gray></td>
</tr>
</table>
</BODY>
</HTML>
I'd prefer no borders at all, but if they have to be there, can I make them black?
Thanks!
<HTML>
<BODY>
<table width="100%" border=0>
<tr>
<td colspan=3 height=45 bgColor=silver></td>
</tr>
<tr>
<td height=500 width="15%" bgColor=gray></td>
<td height=500 width="70%" bgColor=silver></td>
<td height=500 width="15%" bgColor=gray></td>
</tr>
</table>
</BODY>
</HTML>
I'd prefer no borders at all, but if they have to be there, can I make them black?
Thanks!