I have a table and would like to remove the spaces between the borders! How can I do this?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tabela</title>
</head>
<body>
<h1>Pesquisa no banco</h1>
<table border="1">
<thead>
<tr>
<th>Id</th>
<th>nome</th>
<th>sobrenome</th>
<th>balanço</th>
</tr>
</thead>
<tbody>
<tr> <td> id1</td>
<td> Jose</td>
<td> Fernando</td>
<td> -4000</td>
</tr>
<tr> <td> id2</td>
<td> Joaquim</td>
<td> Macedo</td>
<td> 12000</td>
</tr>
</tbody>
</table>
<br>
</body>
</html>