我有一个动态生成的数据表,我使用dom pdf将html页面转换为pdf.I想在每个页面上添加页眉和页脚。但问题是当数据量很大时,页脚不稳定,页眉和页脚也不会在每页上重复。
<div class="conainer-fluid">
<div class="row0">
<div class="header"><img src="<?php echo base_url()?>public/images/alhamed.jpg" style="width: 700px;"></div>
</div>
<div class="card-body">
<div class="table-responsive-sm">
<table class="table table-striped">
<thead class="thead-default">
<tr>
<th class="text-center"> # </th>
<th> Product </th>
</tr>
</thead>
<tbody>
<?php
for($j=0;$j<40;$j++)
{
?>
<tr>
<td>haii</td>
</tr>
<?php
if($i<$count)
{
$i++;
}
}
?>
</tbody>
</table>
</div>
<div class="conainer-fluid">
<div class="row1">
<div class="footer"><img src="<?php echo base_url()?>public/images/footer.jpg" style="width: 700px; margin-bottom: 150px;"></div>
CSS
table td {page-break-after:always;} .header {position:fixed; } .row1 {position:fixed; background-color:lightblue;}
如何根据数据在页面的每一页上重复页眉和页脚?