使用 abcPDF 手动插入分页符
做到这一点最简单的方法是什么?我做了一些研究并提出了
<div style="page-break-before:always"> </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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否完全理解您的担忧,但创建这样的分页符是正确的方法。
假设您有一些标记,例如:
那么这将导致第二个 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:
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 thediv
). But if you have other content (and the content isvisible
), you don't have to worry about that either.Hope this makes sense.