Reputation: 39
I'm trying to make email creative.
I give each td the width of 156px - but for some reason they are in size of 228px.
You can see what I did here:
http://lirantadmor.co.il/emailhelp
So why each td is 228px when I give them 156px?
Upvotes: 0
Views: 51
Reputation: 1604
If you have a table that is set to be a width of 720px, then your row will need to be 720px. The sum of all your td's doesn't equal to the width you set on the table so it will expand to fit the width of the table/row
Upvotes: 0
Reputation: 114417
All TDs must add up to the total specified in <table>
. You currently have this set to 700 pixels.
Beware: not all CSS properties are supported in HTML Emails. Here is a handy reference:
http://www.campaignmonitor.com/css/
Upvotes: 0