CSS 参考手册
CSS page-break-before 属性
设置在表格元素之前始终进行分页的分页行为
源代码:
点击运行 »
<html> <head> <style> @media print { h1 { page-break-before: always } } </style> </head> <body>....</body> </html>
运行结果:
点击运行 »