带有 td 的电子邮件中的背景图像

发布于 2024-10-27 01:34:30 字数 145 浏览 2 评论 0原文

尝试为表格的单元格获取背景图像,以便我可以在其上显示动态文本,

我尝试过:

<td style="background-image:url('bla...

它不起作用?最好的方法是什么?

Trying to get a background image on the go for a cell of a table so I can display dynamic text over it

I tried :

<td style="background-image:url('bla...

It ain't working? Whats the best way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

蓝眼睛不忧郁 2024-11-03 01:34:30
<td background="sample.jpg"> 

确实是最好的解决方案。这是适合所有电子邮件客户端的最兼容的方式。例如,CSS 解决方案不适用于 Google 邮件。这是当今查看电子邮件的非常流行的方式。

<td background="sample.jpg"> 

is accually best solution. It's the most compatible way to fit all email clients. CSS solution will not work in Google mail for example. And that's pretty popular way of viewing emails these days.

绿光 2024-11-03 01:34:30

您可以对图像进行 Base64 编码(Base64 Online),并且然后将生成的字符串添加到CSS规则中。这还将为电子邮件增加约 33% 的空间。

You could do a Base64 encode on the image (Base64 Online), and then add the string generated to the css rule. This will also add more space to the email about 33%.

2024-11-03 01:34:30

您希望为表格的特定单元格显示背景图像吗?

如果是这种情况,请使用这个

<TD BACKGROUND="sample.jpg" >

You want background image to be displayed for a particular cell of table ?

If that's the case, use this

<TD BACKGROUND="sample.jpg" >
旧时浪漫 2024-11-03 01:34:30

根据您的标签,您似乎正在定位 Gmail。 Gmail 通过使用 background="image.jpg" 属性来工作(至少如果您将其应用于表格,但 td 也应该没问题)。

如果您也想包含其他客户端,您可以使用背景属性和一些 css 的混合方法(查看 本文(包含示例)。但有些客户(Lotus-...)很难覆盖。

Based on your tags, it looks like you are targeting gmail. Gmail works by using the background="image.jpg" attribute (at least if you apply it to a table, but td should be fine, too).

If you'd like to include other clients, too, you may use a mixed approach with the background-attribute and some css (check out this article with examples). Some clients (Lotus-...) are very difficult to cover though.

谁与争疯 2024-11-03 01:34:30
<td background="sample.jpg" >

如果您想显示特定单元格的图像,那么最佳解决方案是:

<td background="sample.jpg" >

If you want to display an image for a particular cell then the best solution for this is:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文