



元素 | 不支持的格式 | 支持的格式 |
页眉 | 表格主体中<thead>...</thead>内的内容。 | 内容应包含在 <section id="header-container"class=""> <div id="pdfgen-header"> ... </div> </section> CSS 样式应按如下方式提供: <style> #pdfgen-header { } </style> |
页脚 | 表格主体中 <tfoot>...</tfoot> 包围的内容。 | 内容应包含在 <section id="footer-container"class=""> <div id="pdfgen-footer"> ... </div> </section> 页脚内容所需的 CSS 应如下提供: <style> #pdfgen-footer { } </style> |
页码 | <span class="pagenum"></span> <style> *.pagenum:after { counter-increment: page; content: "" counter(page); } </style> | <span class="pageNumber"></span> 要获取总页码数,请使用 <span class="totalPage"></span> |
