dompdf:如何在除第一页之外的每个页面上添加页眉?
我正在使用 dompdf 生成 PDF。我已经从 dompdf 网站上获取了代码,将标题添加到 pdf 中,并且它正在工作,但我想将标题放在除第一页之外的每个页面上。有什么建议吗?
I'm using dompdf to generate a PDF. I've grabbed the code from the dompdf website to add a Header to the pdf and it's working, but I would like to put the header on every page except for the first. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过在第一页中出现的元素后面插入页眉和页脚元素来实现此目的。
例如:
编辑:添加样式标签
You can do this by inserting the header and footer elements after the elements that appear in the first page.
For example :
Edit: added the style tag
因为当你设置页眉时,文档的每一页都会出现页眉,
您可以使用 div 元素隐藏第一页的标题。具有白色背景颜色和 z-index 大于标题的 Div,您将将该 div 放在页面顶部,并将位置精确设置在第一页标题上方。
我已经测试过这个并且它有效。
我希望这会有所帮助。
Because when you set header, header will appear of every page of the document,
you can use div element to hide header from first page. Div with white background color and z-index greater then header and you will put that div on the top of the page and set position exactly over first page header.
I have tested this and its worked.
I wish this will help.
同样的问题,由 DOMPDF 项目成员解释
https://github.com/dompdf/dompdf/issues /347
为我工作,我的第一页是封面(没有页眉没有页脚)
Same issue, explained by a DOMPDF Project Member
https://github.com/dompdf/dompdf/issues/347
Worked for me, my first page is a cover (no header no footer)