I don't know which NN you use.
In NN4+ it's verry hard to accomplish.
But in NN6 you can try (I can't test it here):
<html>
<head>
</head>
<body>
<style>
td.nob
{
border: 0px;
}
</style>
<table border=2 bordercolor="red" cellspacing=0 celpadding=0>
<tr>
<td class="nob">cell 1-1
</td>
<td class="nob">cell 1-2
</td>
<td class="nob">cell 1-3
</td>
</tr>
<tr>
<td class="nob">cell 2-1
</td>
<td class="nob">cell 2-2
</td>
<td class="nob">cell 2-3
</td>
</tr>
<tr>
<td class="nob">cell 3-1
</td>
<td class="nob">cell 3-2
</td>
<td class="nob">cell 3-3
</td>
</tr>
</table>
</body>
</html>
-----------------------------------
If this doesn't work you can try:
<style>
td.nob
{
border-left: 0px;
border-right: 0px;
border-top: 0px;
border-bottom: 0px;
}
</style>
----------------------------
To make particular cellborders in the table you can do:
<style>
td.nob2
{
border-left: 2px solid green;
border-right: 1px solid orange;
border-top: 3px solid blue;
border-bottom: 4px solid yellow;
}
</style>
<td class="nob2">cell 2-2
Hope this helps,
Erik
<!-- My sport:
Boomerang throwing !!
This year I will participate at the World Championships in Germany. (
!! Many Happy Returns !! -->