作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已将页脚设置为运行元素。页脚的 HTML 内容设置在文档的末尾,从而使页脚仅显示在文档的最后一页(这是我想要的)。
<!-- DTD declaration -->
<html>
<!-- head -->
<body>
<!-- My content -->
<footer>
<!-- footer content -->
</footer>
</body>
</html>
问题是页脚直接显示在内容下方,而不是其指定位置:
footer {
width: auto;
margin: 0 auto;
position: running(footerIdentifier);
}
@page {
@bottom-center {
content: element(footerIdentifier);
}
}
我已经尝试过经典方法,但我需要根据太多不同的内容动态计算推送 block ,以便每次都能为页脚找到一个完美的位置。
这段代码不应该让页脚出现在页面的底部中心吗?
我一直在浏览专门针对 HTML 的手册 ( PDF )( Running Elements )有一段时间,我似乎找不到我的错误。
最佳答案
我仍然没有找到为什么 PDF Reactor 不会像它应该的那样运行,但与此同时我使用了广为人知的常规 CSS 方式:
footer {
position:absolute;
bottom:0;
}
关于css - PDFReactor - 页脚显示在内容结束后,而不是页面底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27826747/
我是一名优秀的程序员,十分优秀!