使用 abcPDF 手动插入分页符

发布于 2024-11-28 00:48:19 字数 202 浏览 1 评论 0原文

做到这一点最简单的方法是什么?我做了一些研究并提出了

<div style="page-break-before:always">&nbsp;</div>

放入 CSS 的方法,但我不知道如何做到这一点。我正在使用它来生成 PDF,并且正在寻找一种方法来开始新页面,而无需填充前一页的空白。

What's the easiest way to do this? I've done some research and came up with the

<div style="page-break-before:always"> </div>

to put in the CSS but I'm not sure how to do this. I'm using it to generate PDF's and I'm looking for a way to start a new page without filling up empty space on a previous one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绝對不後悔。 2024-12-05 00:48:19

不确定我是否完全理解您的担忧,但创建这样的分页符是正确的方法。

假设您有一些标记,例如:

<div>Some content here that doesn't fill the page</div>
<div style="page-break-before:always">Content here starts on a new page</div>

那么这将导致第二个 div 出现在新页面上。上一页是否被填充取决于第一个 div 的内容(或之前的标记)。

唯一的要求是第二个 div 不应为隐藏(这就是为什么您至少需要一个空白字符 em> 在 div 内)。但如果您有其他内容(并且该内容可见),您也不必担心这一点。

希望这是有道理的。

Not sure if I understand your concern fully, but creating a page break like that is the way to go.

Let's say you have some markup like:

<div>Some content here that doesn't fill the page</div>
<div style="page-break-before:always">Content here starts on a new page</div>

Then this will cause the second div to appear on a new page. Whether the previous page gets filled or not is upto the contents of the first div (or previous markup until that point).

The only requirement is that second div should not be empty or hidden (this is why you at least need one whitespace character inside the div). But if you have other content (and the content is visible), you don't have to worry about that either.

Hope this makes sense.

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