我想在打印期间在页面上显示页眉和页脚。所以我使用的代码是:
<table align="center">
<thead style="display: table-header-group;">
<tr>
<td>
Header
</td>
</tr>
</thead>
<tbody> Body data</tbody>
<tfoot style="display: table-footer-group; bottom:0;">
</tfoot>
</table>
正确显示标题和内容。页脚也显示在每页末尾都是正确的。但问题是当最后一页内容只有一行,页脚显示在该行之后而不是页面底部。
答案 0 :(得分:0)
在index.php中重命名index.html。创建一个footer.php。 将您的页脚代码插入footer.php
进入index.html并将以下代码添加到要添加页脚的部分:
<?php
include 'footer.php';
?>