在最后一页的底部有一些内容

时间:2018-10-31 14:03:50

标签: html css pdf footer

我正在将页面转换为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>

1 个答案:

答案 0 :(得分:0)

我建议仅将最后一页与其他页面分开。因此,导出没有最后一页的PDF,然后进入并编辑最后一页,然后将其添加到最终PDF中即可。您可以使用任何免费的PDF编辑器来实现。
这是在线链接的链接,因此无需下载任何内容LINK