I want to add a linear gradient as the background of a newsletter I'm designing but I'm having problems setting it to work.
First, I used CSS linear-gradient with rgba colors. It was working in the browser in Apple Mail, but not with Outlook and Gmail.
Then I tried a PNG as a background image, covering the all viewport. It worked in Apple Mail, Safari, Gmail (desktop version) and Gmail App, but not in Outlook (mobile, App and desktop).
Then I used a code that I found here https://backgrounds.cm but it still is not working, see this screenshot: Outlook Desktop
I am now using a picture background that is 2000px*2000px. I tried to change the size, but it's still the same.
Here is the code I'm using now:
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td background="http://www.danselouisb.fr/newsletter/newsletter1/img/compagnie_danse_louis_barreau_FD-02.png" bgcolor="#d7554e" valign="top" style="-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="mso-width-percent:1000;">
<v:fill type="tile" src="http://www.danselouisb.fr/newsletter/newsletter1/img/compagnie_danse_louis_barreau_FD-02.png" color="#d7554e" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<div>
NEWSLETTER NEWSLETTER NEWSLETTER
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
</table>
How can I get the background to work in Outlook?