将Base64编码图像与HTML表格背景一起使用

时间:2017-08-15 23:23:42

标签: html base64

我正在尝试设置电子邮件签名,我在这里使用的模板

<td background="image.jpg">

我正在尝试在后台输入base64字符串,但是html表格背景不像标签一样支持它。

转换此内容的最佳方法是什么?

这上面有容器。

<table width="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#F6F6F6">
    <tr>
        <td width="100%" valign="top" align="center">

            <!-- Start Wrapper  -->
             <table width="600" height="226" cellpadding="0" cellspacing="0" border="0" class="wrapper" bgcolor="#FFFFFF">                     
                 <tr>
                     <td background="images/background copy.png" bgcolor="#7bceeb" width="600" height="226" valign="top">
                          <!--[if gte mso 9]>
                          <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:600px;height:226px;">
                            <v:fill type="tile" src="images/background.jpg" color="#7bceeb" />
                            <v:textbox inset="0,0,0,0">
                          <![endif]-->
                          <div>

1 个答案:

答案 0 :(得分:-1)

<td>元素没有background属性。

要将背景图像应用于表格单元格,请使用CSS:

<td style="background-image: url(…)">