打印大型HTML表格时如何处理分页符

打印大型HTML表格时如何处理分页符,第1张

打印大型HTML表格时如何处理分页符
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Test</title><style type="text/css">    table { page-break-inside:auto }    tr    { page-break-inside:avoid; page-break-after:auto }    thead { display:table-header-group }    tfoot { display:table-footer-group }</style></head><body>    <table>        <thead> <tr><th>heading</th></tr>        </thead>        <tfoot> <tr><td>notes</td></tr>        </tfoot>        <tbody>        <tr> <td>x</td>        </tr>        <tr> <td>x</td>        </tr>        <!-- 500 more rows -->        <tr> <td>x</td>        </tr>    </tbody>    </table></body></html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5149401.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存