Hi Jim,
This solution is only for IE:
You can turn it off with <TD style="border: none;"> but when the cell is in the middle of other cells you still see a small border of the cells arround it. So for the cell on the left hand side you code <TD style="border-right: none;"> , for the cell at the top <TD style="border-bottom: none;"> , for the cell at the bottom <TD style="border-top: none;"> and for the cell at the right hand <TD style="border-left: none;">
Another way (if you want more cells without borders) is to turn off all the cellborders with <table rules="none"> and the cell <TD style="border: 3px;"> or specify a certain 'width' - 'style' - 'color' with <TD style="border: 3px inset green;">
Hope this helps,
Erik
here are 2 examples:
first
<table width="300" border="5" cellspacing="0" cellpadding="0" height="300" bordercolor="#000000">
<tr>
<td width="100" height="100">
</td>
<td style="border-bottom: none;" width="100" height="100">
</td>
<td width="100" height="100">
</td>
</tr>
<tr>
<td style="border-right: none;" width="100" height="100">
</td>
<td style="border: none;" width="100" height="100">
</td>
<td style="border-left: none;" width="100" height="100">
</td>
</tr>
<tr>
<td width="100" height="100">
</td>
<td style="border-top: none;" width="100" height="100">
</td>
<td width="100" height="100">
</td>
</tr>
</table>
second
<table rules="none" width="300" border="5" cellspacing="0" cellpadding="0" height="300" bordercolor="#000000">
<tr>
<td width="100" height="100">
</td>
<td width="100" height="100">
</td>
<td width="100" height="100">
</td>
</tr>
<tr>
<td width="100" height="100">
</td>
<td style="border: 3px inset green;" width="100" height="100">
</td>
<td width="100" height="100">
</td>
</tr>
<tr>
<td width="100" height="100">
</td>
<td width="100" height="100">
</td>
<td width="100" height="100">
</td>
</tr>
</table>