我正在将页面转换为PDF。该PDF将长达多页。我想在生成的PDF的最后一页的底部有一些文本内容,例如条款和条件。
当前我正在使用.footer
,但这会在每页底部打印文本。
<HTML>
<head>
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
clear:both;
}
</style>
</head>
<body>
<div>
Main content
</div>
<div class="footer">
Footer Content. I want this to be only on the last page.
</div>
</body>
</HTML>
答案 0 :(得分:0)
我建议仅将最后一页与其他页面分开。因此,导出没有最后一页的PDF,然后进入并编辑最后一页,然后将其添加到最终PDF中即可。您可以使用任何免费的PDF编辑器来实现。
这是在线链接的链接,因此无需下载任何内容LINK