I've been researching the best way to style tables in my emails on the internet.
From what I understand, CSS can be tricky when it comes to email formatting.
So, when it comes to styling tables, is it better to use CSS or HTML?
Should I opt for code like this:
<td style="text-align: center; width: 600px; height: 35px; background-color: #dcdcdc">
Or code like this:
<td align="center" bgcolor="#dcdcdc" width="600px" height="35px">
Or does it not really matter at all?