我有用于构建我的 iText 飞碟页面的 html 和 css 设置如下...
<html>
<head>
<style type="text/css">
body { padding: 5px; }
.footer {
position: running(footer);
font-size: 11px;
text-align: center;
}
@page {
@bottom-center {
content: element(footer)
}
}
.pagenumber:before {
content: counter(page)
}
.pagecount:before {
content: counter(pages)
}
</style>
</head>
<body>
<div class="content">
lots of content that spans multiple pages in here...
</div>
<div class="footer">
Page <span class="pagenumber"></span> of <span class="pagecount"></span>
</div>
</body>
</html>
为什么页脚只显示在最后一页?