【发布时间】:2019-01-21 09:25:39
【问题描述】:
我想创建一个带有背景图像/框架的时事通讯,我想知道最好的方法是什么。如果您有任何建议,请分享。
背景图片为here
这是迄今为止我设法编写的代码,但我找不到使 td 居中的方法,而且我必须在图像文本和徽标之上添加。这可能吗?如果可以,它是否与大多数使用的电子邮件客户端(如 Outlook 或 gmail)兼容?
<html>
<head>
<title></title>
</head>
<body>
<div style="background-color:#ffffff;">
<!--[if gte mso 9]>
<v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
<v:fill type="tile" src="https://i.imgur.com/xRYqx1Y.png" color="#7bceeb"/>
</v:background>
<![endif]-->
<table align='middle' height="100%" width="100%" cellpadding="0" cellspacing="0" border="0" repeat="none">
<tr>
<td align='middle' valign="middle" style="background-repeat: no-repeat; text-align: center;" background="https://i.imgur.com/xRYqx1Y.png">
</td>
</tr>
</table>
</div>
</body>
</html>
【问题讨论】:
标签: css html-table html-email newsletter