Reputation: 1
Tables in HTML Email not displaying correctly.
The cells will not Vertically Align at the top.
Code in HTML that did not work.
<TD valign=top>
Upvotes: 0
Views: 75
Reputation: 1
SOLUTION:
Create a table in MS OUTLOOK 365
Email it to yourself.
Click here to view it in a web browser message.
Now you have the correct HTML code from Microsoft.
Code in HTML **WORKING **
<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0 style='border-collapse:collapse;border:none'>
<td width=156 valign=top style='width:116.85pt;border-top:1px solid blue; windowtext 1.0pt;padding:0cm 5.4pt 0cm 5.4pt'>
I added the border-top:1px solid blue for clarity to separate but not necessary.
Upvotes: 0