fai con i css così:

<html>
<head>
<title>Untitled</title>
<style>
table {
border-left:1px solid blue;/* bordo sinistro: larghezza, tipo, colore*/
border-right:1px solid blue;/* bordo destro: larghezza, tipo, colore*/
border-top: 3px solid red;/* bordo superiore: larghezza, tipo, colore*/
border-bottom: 3px solid red;}/* bordo inferiore: larghezza, tipo, colore*/
</style>
</head>

<body>

<table width="90%" border="3" cellspacing="5" cellpadding="5" align="center" height="206">
<tr>
<td style="border:0px;">tabella senza bordo</td>
<td style="border:0px;">tabella senza bordo</td>
</tr>
<tr>
<td >tabella con bordo</td>
<td >tabella con bordo</td>
</tr>
</table>

</body>
</html>