css-paged-media – 页面和页脚在每个页面以打印模式与css

前端之家收集整理的这篇文章主要介绍了css-paged-media – 页面和页脚在每个页面以打印模式与css前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Web应用程序,它有一个可能超过一页的报告,我想在每个页面打印页眉和页脚.
我找到并尝试这样:
Repeating a report header in each page
但它没有为我工作.我尝试歌剧,IE9,Firefox,谷歌浏览器,但…没有.页边距工作正常,但内容是我想要的,它不起作用.

解决方法

你可以设置一个位置:固定;页眉和页脚,以便在每个页面上重复

例如

<header class="onlyprint"><!--Content Goes Here--></header>
<footer class="onlyprint"><!--Content Goes Here--></footer>

@media screen {
    header.onlyprint,footer.onlyprint{
        display: none; /* Hide from screen */
    }
}

@media print {
    header.onlyprint {
        position: fixed; /* Display only on print page (each) */
        top: 0; /* Because it's header */
    }
    footer.onlyprint {
        position: fixed;
        bottom: 0; /* Because it's footer */
    }
}
原文链接:https://www.f2er.com/css/216128.html

猜你在找的CSS相关文章