将边距应用到正在运行的 CSS 位置
我使用以下 CSS 代码将页脚放置在页面底部:
<style type="text/css">
@page {
@bottom-center { content: element(footer); }
}
#footer {position: running(footer);}
</style>
有没有办法将其显示得稍高一些?添加 margin-bottom: 50px
似乎没有效果。
更新:页面将使用 iText 转换为 PDF
I'm using the following CSS code to position my footer at the bottom of the page:
<style type="text/css">
@page {
@bottom-center { content: element(footer); }
}
#footer {position: running(footer);}
</style>
Is there a way to display it slightly higher? Adding margin-bottom: 50px
doesn't seem to have an effect.
update: the page will be converted to PDF using iText
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我终于设法让它与以下CSS一起工作:
以前,我只尝试将margin-bottom添加到@bottom-center和#footer。
I finally managed to get it working with the following CSS:
Previously, I only tried to add margin-bottom to the @bottom-center and #footer.
为此,您通常使用:
jsFiddle 示例
To achieve that, you usually use:
jsFiddle example