我想打印我的html页面。我有超过1页,我只想在最后一页的底部打印我的页脚。我的css
@page {
size: 8.5in 11.0in;
margin-left: 0.7cm;
margin-top: 0.7cm;
margin-top: 0.7cm;
margin-bottom: 2.6cm;
margin-right: 0.5cm
}
#footer {
clear: both;
position: running(footer);
z-index: 10;
margin-top: -1em;
vertical-align: bottom;
height: 5%;
}
@page {
@bottom-center {
content: element(footer);
}
}
HTML:
<body><div id="content"></div>
<div id="footer"></div>
<body>
它有效,但是当我的内容非常大时,我的内容,例如6页表格,我的页脚会填充所有带有表格的页面。
答案 0 :(得分:1)
已解决:以下 CSS 代码将仅在 PDF 的最后一页显示页脚或任何内容。
<style type="text/css" media="print">
@page {
size: A4 portrait;
padding-left: 8px;
padding-right: 0px;
margin-top: 50px;
margin-bottom: 150px;
@bottom-center {width: 100%; content: element(footer)}
}
@media print {
.footer {
left: 0;
width: 100%;
position: running(footer);
height: 200px;
}
}
</style>
<div class="footer">
Content Here
</div>
答案 1 :(得分:-1)
为了使其更简单,您可以将页脚放在媒体查询中以便以另一种方式打印:
@media print {
body {
position: relative;
}
#printfooter {
position: absolute;
bottom: 0;
}
}
作为快速解决方案的建议。或者你使用带有@page扩展名的css3:
@page:last {
@bottom-center {
content: element(footer);
}
}
有关更多信息,w3有关于CSS Paged Media Modules的非常好的纪录片。 5.3,例7是你的好消息!
希望其中一个有帮助!如果,如果没有,请告诉我。
祝你好运, 玛丽安。