My idea is to make a table that has a spacing between cells, as in the image:
ButaccordingtotheMozilladocumentationforexample,youcanconfirmthatcellspacing=""
cellpadding=""
attributes are obsolete link
And even if you talk: "It's obsolete, but it still works!" Yes it really works, but the error in the W3C validator, in addition to being able to stop working in a browser update on future...
Idonotknowhowtodoit,Ialreadytrieditasacellspacing=""
on margin: 20px
and it still did not work ...
td {
border: 1px solid;
padding: 6px;
margin: 20px; /* não funciona */
}
<table>
<tr>
<td>01</td>
<td>02</td>
<td>03</td>
</tr>
<tr>
<td>04</td>
<td>05</td>
<td>06</td>
</tr>
<tr>
<td>07</td>
<td>08</td>
<td>09</td>
</tr>
</table>