Html 使用网站的一个表格单元格背景中的图像

Html 使用网站的一个表格单元格背景中的图像,html,image,background,Html,Image,Background,我曾在我的老公司帮助设计电子邮件,但我曾经的数字营销人员使用一个名为“背景”的网站,使一个手机有一个背景,我们可以把文本覆盖 接下来,我会在photoshop/illustrator中将需要背景文本的单元格切分,然后他会将其上传到这个网站,它会给他链接的html,然后他会将其粘贴到电子邮件中。我有下面的代码示例,但不知道他以前使用的网站是什么 <!--Cell 4--><td background="cell_04.jpg" style="display:block; fo

我曾在我的老公司帮助设计电子邮件,但我曾经的数字营销人员使用一个名为“背景”的网站,使一个手机有一个背景,我们可以把文本覆盖

接下来,我会在photoshop/illustrator中将需要背景文本的单元格切分,然后他会将其上传到这个网站,它会给他链接的html,然后他会将其粘贴到电子邮件中。我有下面的代码示例,但不知道他以前使用的网站是什么

  <!--Cell 4--><td background="cell_04.jpg" style="display:block; font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px" bgcolor="#000000" width="214" height="181" valign="top">
                                                                                                  <!--[if gte mso 9]>
                                                                                                  <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:214px;height:181px;">
                                                                                                    <v:fill type="tile" src="cell_04.jpg" color="#000000" />
                                                                                                    <v:textbox inset="0,0,0,0">
                                                                                                      <div style="font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px">
                                                                                                  <![endif]-->
                                                                                                  <div class="auto-style1" style="font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px">
                                                                                                      <br>
                                                                                                      Give someone you love the perfect Valentine’s Day gift with a beautiful and contemporary Spaceform piece engraved with your own words.
                                                                                                      <br>
                                                                                                      <br>
                                                                                                      The stunning quality of our pieces means they can be treasured forever and will always be a special reminder of how much you love someone.<br>
                                                                                                      <br>
                                                                                                          </div>
                                                                                                   <!--[if gte mso 9]>
                                                                                                   </v:textbox>
                                                                                                  </v:rect>
                                                                                                  <![endif]-->
                                                                                                </td>


给你爱的人一份完美的情人节礼物,上面刻着你自己的文字,是一件美丽而现代的Spaceform。

我们的作品令人惊叹的品质意味着它们可以被永远珍藏,并将永远成为你有多爱一个人的特别提醒。


是否有人知道他使用的网站或如何做得更好,请记住,在创建此代码时,我们不是编码人员

在样式内部使用背景 背景=url(“图像路径”)



给你爱的人一份完美的情人节礼物,上面刻着你自己的文字,是一件美丽而现代的Spaceform。

我们的作品令人惊叹的品质意味着它们可以被永远珍藏,并将永远成为你有多爱一个人的特别提醒。


访问mailchimp.com,这不是一个代码问题
<td  style="background=url("cell_04.jpg");display:block; font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px" bgcolor="#000000" width="214" height="181" valign="top">
                                                                                                  <!--[if gte mso 9]>
                                                                                                  <v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:214px;height:181px;">
                                                                                                    <v:fill type="tile" src="cell_04.jpg" color="#000000" />
                                                                                                    <v:textbox inset="0,0,0,0">
                                                                                                      <div style="font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px">
                                                                                                  <![endif]-->
                                                                                                  <div class="auto-style1" style="font-family:Tahoma, Verdana, Segoe, sans-serif; font-size:12px; color:#000000; line-height:14px">
                                                                                                      <br>
                                                                                                      Give someone you love the perfect Valentine’s Day gift with a beautiful and contemporary Spaceform piece engraved with your own words.
                                                                                                      <br>
                                                                                                      <br>
                                                                                                      The stunning quality of our pieces means they can be treasured forever and will always be a special reminder of how much you love someone.<br>
                                                                                                      <br>
                                                                                                          </div>
                                                                                                   <!--[if gte mso 9]>
                                                                                                   </v:textbox>
                                                                                                  </v:rect>
                                                                                                  <![endif]-->
                                                                                            </td>