Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有生成报告的 html 页面,它包含部分和子部分。代码有许多表和子表以及 div 标签。我想在任何部分标题到达页面末尾时应用分页符。特别是“打印时不想在页面末尾标题”
如果您想使用特定的分页符,在打印时,您可以使用 CSS 进行设置,如下所示:
CSS:
@media print { .page-break { display: block; page-break-before: always; } }
HTML:
<!-- any content --> <div class='page-break'></div>
通过这样做,您将在此标记处手动中断页面。