Reputation: 91
I have just started creating HTML emails. I am creating my latest one at http://www.jn-design.co.uk/misc/Swagelok/email.html
It displays fine in browsers , until IE, even 9 does not agree with it. I havent looked at the others yet. The correct display will be able to be seen within firefox or chrome.
Any ideas as to why half of the table has floated to the right?
Upvotes: 0
Views: 323
Reputation: 123
For the paragraph padding, why don't you try setting the margins individually. I will also recommend Boilerplate since it contains a lot of solutions to the quirks of each email client.
Upvotes: 0
Reputation:
You should add: align="center" in place of: align="left" on line 22.
I've done my fair share of HTML emails in my day!
Also add a doctype as well.
Upvotes: 1
Reputation: 22243
Try putting
<!doctype html>
at the top of your document, before the <html>
tag
Upvotes: 2