如何在表格邮件中使用图像背景css属性?

时间:2015-06-24 11:39:36

标签: html html-table html-email

如何在基于表格的电子邮件模板中使用背景图片,该模板应该支持所有设备和电子邮件客户端上的图像背景属性?

1 个答案:

答案 0 :(得分:0)

您可以将背景图像写为表格的内联css。

    <table width="100%" border="0" cellspacing="0" cellpadding="20" background="background_image.png">
      <tr>
    <td>
   <p>Content on a pretty background image.</p>
  </td>
 </tr>
  </table>