Reputation: 3027
The width and height style attributes doesn't seem to work for Outlook 2007.
For example putting in <img src="images/image003.jpg" style='width:49.5pt;height:169.5pt />
in a table cell doesn't affect the image size at all and the image occupies the whole table cell.
Upvotes: 0
Views: 1014
Reputation: 49423
Both Outlook 2007 & 2010 don't handle inline styles consistently. Change your img tag to read:
<img src="images/image003.jpg" width="49.5" height="169.5" />
Upvotes: 2