碟飞行头和页脚
我在飞碟飞行中使用标头和页脚。它运行良好。 当前的状态在我将DIV与标头或页脚一起使用的地方起作用,我从那里一直到文件标头或页脚结束。 我已经尝试过,但是它不起作用。 {content:element(header,last-except)}
或 {content:element:element(header,first-except)}
这是我的代码 样式:
div.header {
display: block;
text-align: center;
position: running(header);
}
div.footer {
display: block;
text-align: center;
position: running(footer);
}
@page {
@top-center { content: element(header) }
}
@page {
@bottom-center { content: element(footer) }
}
HTML:
<div class="header">
</div>
我只想拥有一个标题或页脚,例如2到5页的PDF。 有没有办法阻止PDF每页上的一代?
谢谢。
I use the header and footer in saucer flying. It works well.
The current state works where I use the div with header or footer, I have from there until the end of the file header or footer.
I've tried this, but it doesn't work.{ content: element(header, last-except)}
or { content: element(header, first-except)}
This is my code
style:
div.header {
display: block;
text-align: center;
position: running(header);
}
div.footer {
display: block;
text-align: center;
position: running(footer);
}
@page {
@top-center { content: element(header) }
}
@page {
@bottom-center { content: element(footer) }
}
HTML:
<div class="header">
</div>
I would like to have a header or footer only, for example from 2 to 5 pages of pdf.
Is there a way to stop the generation on each page of the pdf?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用飞行尾声,您只能使用
不幸的是,
:last
伪级不起作用。With flying-saucer, you can only set a different header or footer for the first page, using the
:first
pseudo-class.Unfortunately, the
:last
pseudo-class doesn't work.