0

这是我的代码:

<td height="738" valign="top" width="717" align="center" background="mail_files/paper.png">

我已将背景“paper.png”转换为 Base64,我想将其嵌入其中。有什么办法吗?

我试过了 :

<td height="738" valign="top" width="717" align="center" background=url("data:image/jpeg;base64,.....Base64img.....">

但这没有用。

4

1 回答 1

4

如果您使用正确的 CSS,这应该可以工作:

<td class="PaperCell" height="738" ...>

在 CSS 中:

.PaperCell { background-image: url(data:image/jpeg;base64,.....Base64img.....); }
于 2013-09-15T12:03:51.237 回答