CSS:
table.print{
width:123px;
height:298px;
background-position:center;
background:url('{{ STATIC_URL }}images/human.png');
}
HTML:
<table id="human-body" class="print" >
<tr>
<td>some data</td>
</tr>
</table>
上面的 HTML 在我的应用程序中用作 django 中的打印模板。我的问题是,我使用上面的 CSS 将背景图像应用到打印页面。但是,如果我按下打印按钮并看到打印预览,则缺少背景图像。我也检查了用纸打印它,图像丢失了。