我的代码中有以下结构:
<html>
<body>
<table>
<thead>
// 3 to 4lines of header
</thead>
<tfoot>
// 3to 4 lines of footer
</tfoot>
<tbody>
// Having more than 2pages of content
</tbody>
</table>
</html>
使用<thead>
我可以在打印文档的所有页面中获取标题。但是,<tfoot>
进入最后一页时会立即在内容旁边进行渲染。如何使它出现在最后一页的底部。
我在下面给出了我的输出: