dompdf:如何在除第一页之外的每个页面上添加页眉?

发布于 2024-12-01 13:04:02 字数 97 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

对岸观火 2024-12-08 13:04:02

您可以通过在第一页中出现的元素后面插入页眉和页脚元素来实现此目的。

例如:

<style>
  .flyleaf {
    page-break-after: always;
  }

  .header, .footer {
    position: fixed;
  }

  .header {
    top: 0;
  }

  .footer {
    bottom: 0;
  }
</style>

<div class="flyleaf">
  Some big title
</div>

<div class="header">
  my header
</div>

<div class="footer">
  my footer blah, blah
</div>

<p>The content</p>

编辑:添加样式标签

You can do this by inserting the header and footer elements after the elements that appear in the first page.

For example :

<style>
  .flyleaf {
    page-break-after: always;
  }

  .header, .footer {
    position: fixed;
  }

  .header {
    top: 0;
  }

  .footer {
    bottom: 0;
  }
</style>

<div class="flyleaf">
  Some big title
</div>

<div class="header">
  my header
</div>

<div class="footer">
  my footer blah, blah
</div>

<p>The content</p>

Edit: added the style tag

旧竹 2024-12-08 13:04:02

因为当你设置页眉时,文档的每一页都会出现页眉,
您可以使用 div 元素隐藏第一页的标题。具有白色背景颜色和 z-index 大于标题的 Div,您将将该 div 放在页面顶部,并将位置精确设置在第一页标题上方。

<div style="background-color: white; z-index: 2;"></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.

<div style="background-color: white; z-index: 2;"></div>

I have tested this and its worked.
I wish this will help.

若无相欠,怎会相见 2024-12-08 13:04:02

同样的问题,由 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文