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>
The above HTML is used as a print template in django in my app. My problem is, I used the above CSS to apply the background image to the print page. But if I press print button and see the print preview the background image is missing. I checked with printing it in paper also,the image is missing.