感谢 WeasyPrint,我用 Django 生成了一个我以 pdf 格式呈现的表格。
该表可能真的很长(行数),因此可能以几页 pdf 结果结尾。我必须在页面的每一端都包含一个静态页脚,所以我应用了 CSS固定规则。
我的问题是这个页脚被很长的桌子重叠了。我如何要求 WeasyPrint(我认为是通过 css)在每个页脚之前打破表格并继续在下一页上呈现表格?
<table>
<tr></tr> <!-- a lot of rows, potentially spreading on several A4 pages -->
</table>
<footer style="position: fixed"> <!-- footer contents will be repeated and overlapped on each page until </table> is not reached -->
</footer>
我尝试使用 css 规则作为应用于表格标签的 padding-bottom 但没有成功
谢谢