1

打印页面的html模板:

<table style="width:128px;height:293px;background-position:center;" id="human-body"  background="{{ STATIC_URL }}images/human.png" border="0">
<tr><td>some data</td></tr>
</table>

这是我打印图像的 html,当我单击打印按钮时,打印页面预览在 Firefox 中打开,带有此背景图像,但在 chrome 中图像丢失。会是什么问题。

整个事情是没有背景图像应用于两个浏览器中的打印页面。

4

1 回答 1

0

尝试这个:

<table style="width:128px;height:293px;background-position:center;background-image:url(images/human.png);border:0;" id="human-body">

如果您的 css 在另一个文件夹中并且您的图像在另一个文件夹中,您可能会检查您的目录,然后您可以更改您的 URL 并在开头添加“../”。

这可能对你有帮助!

于 2013-06-10T17:29:43.567 回答