Die CSS-Eigenschaft border-collapse wird Dich weiterbringen:
<html>
<head>
<style type="text/css">
table {
border:black solid 1px;
border-collapse: collapse;
margin:0;
padding:0
}
</style>
</head>
<body>
<table>
<tr>
<td>blablubb</td>
</tr>
[...]
Wird allerdings nicht von allen Browsern unterstützt.
Ciao,
Andreas