Best Practice for email template modules
Hi there.
I've been doing some reading on html email design recently, and there are a few places (and a few examples I've seen) that say not to wrap each element of the email (or module in Marketo speak) in a table, but to wrap the whole email in a table, and just use Table Rows (<TR> and </TR>) to delineate each module.
In attempting to do this, I've come across a bunch of problems with things formatting VERY oddly.
I'm curious as to what other peoples experiences and approaches have been.
in short, do you prefer (grossly simplified of course)
<!-- My modules begins here -->
<table>
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
<!-- My modules ends here -->or
<!-- My modules begins here -->
<tr>
<td>
</td>
</tr>
<!-- My modules ends here -->If the latter, do you have issues with TRs stacking next to each other instead of forming new rows?
Cheers
Jo