我正在创建报告,我只需要将页脚打印在第一页中,然后打印第二页,并用图像填充所有页面。
我正在使用HTML-Sheet-of-Paper来显示报告,尝试更改.divFooter的位置,底部,但是它没有按照我想要的方式显示报告。
<style type="text/css">
@media print {
.divFooter {
align:center;
text-align:center;
position: fixed;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
bottom: 0;
}
}
</style>
<p class="divFooter">
<img src="img/assinatura2.png" style="margin;margin: 0 auto;display: block;">
footerInfo...
</p>
</div>
<div id="page2" class="page">
<img class="imgfull" src="img/contracapa.jpg" />
</div>
当前的行为是在所有页面上都打印了页脚,并且图像显示的很小(第二页没有全部填满)。 谢谢