I have been attempting to replicate the layout of this table:
https://i.sstatic.net/1QuFD.png
However, I am running into an issue with the spacing between the rows (border-spacing: 0 2px), and I'm not sure why. Can anyone provide any guidance on this?
This is the code I am using:
<center>
<table style="z-index: 34; background-color: #57e8e8; width: 50%; border-collapse: collapse; border-spacing: 0 2px;">
<tbody>
<tr>
<td style="padding: 5px; border-collapse: collapse; border-spacing: 0 2px;">Usuário: <strong>teste</strong></td>
</tr>
<tr>
<td style="background-color: transparent; color: #131e2e; padding: 5px; border-collapse: collapse; border-spacing: 0 2px;">Senha: <strong>teste</strong></td>
</tr>
</tbody>
</table>
</center>