I'm trying to recreate this table:
but the spacing between the rows (border-spacing: 0 2px) is not working, anyone knows why?
My code:
<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> 
<center>was deprecated in HTML 4.01. Might be a good idea to let that one go.border-collapse: separate, the background color of your table will show through; make the background color of yourtdthe blue color and the background color of your table transparent.