se intendi il bordo usa questo codice (html+css)
codice:
<html>
<head>
<title>Prova</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.riga {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #990000;
}
-->
</style>
</head>

<body>
<table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td align="center" class="riga">ciao</td>
    <td align="center">bye</td>
  </tr>
  <tr>
    <td align="center" class="riga">mata ne</td>
    <td align="center">hola</td>
  </tr>
</table>
</body>
</html>