表格背景图片未设置在谷歌铬

时间:2013-06-10 17:03:01

标签: html css django cross-browser

打印页面的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中缺少图像。问题是什么。

整个事情是在两个浏览器中都没有为打印输出页面应用背景图像。

1 个答案:

答案 0 :(得分:0)

试试这个:

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

如果你的css位于另一个文件夹而你的图像在另一个文件夹中,那么你可以查看你的目录,然后你可以改变你的URL并在开头添加“../”。

这可能对你有帮助!