Outlook.com and Background Images
(If you’re using conditional comments, read this article on how Outlook.com is handling them differently)
A well placed background image can make all the difference in an email. If you have an image that you’d like to use as the background, use a table cell background to get it to work in Outlook.com (Hotmail).This is effective because Outlook.com strips background-image styles.
For example Outlook.com will strip the background-image from this div element.
<div style="width:300px; height:200px; background-image:url(http://server/image);"> Content </div>
However if the background is set using the background attribute, Outlook.com will leave it as is, for example:
<table border=0 cellpadding=0 cellspacing=0><tr> <td width="300" height="200" background="http://server/image"> Content </td> </tr></table>
Client Support
Most clients support both table cell background and the background-image style. However table cell background has the added support of Outlook.com and Lotus Notes 8.5. These clients support table cell background, Yahoo! Mail, Outlook.com, Gmail, Outlook 2003, Lotus Notes 8.5, iOS Mail, Android Mail.
Background Images on Outlook 2007+
As an aside, Outlook 2007/2010/2013 do not support either table background images or background-image styles but Campaign Monitor created a Bulletproof background images tool that allows for background images in those clients by using some clever techniques. You can check it out at backgrounds.cm.
Recap
Our first Interactive Email example allowed the user how to toggle between a foreground image and a background image set on a table cell using the background attribute. As demonstrated above, it would be easier to implement using one element and toggling over the background-image style. However, doing so would mean the effect would not work on Outlook.com although it would still work on Yahoo! Mail and Outlook 2003.
Any way to get Outlook.com to scale a background image to 100% of its container?
Otherwise Retina-friendly images are going to be a problem.
Thanks
Did you ever figure out a fix?