我渲染一个没有固定高度的pdf。 我想在最后一页的底部附加一个页脚,我试图用css玩,但它仍然显示在第一页的页脚上。
有什么想法吗?
此刻我有一个像这样的CSS
body {
# tried with height: 100% too
height: 269mm; # a standard A4 height
}
div.footer {
position: absolute; # tried with fixed too
bottom: 0px;
height: 200px;
}
我认为最好的解决方案是使用javascript并检查最后一页何时到来,但我该怎么办?
另一个注意事项似乎是:
body { height: (nr_pages * 269)mm }
是一个有效的解决方案(可能不太好)。如何检索页面总数(在视图内)?