我有一个显示公司规则的网站。它有多个章节,标题,副标题和内容。我想做一个可打印的版本,如下所示:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
<style type="text/css">
@media screen {
header.onlyprint, footer.onlyprint{
display: none; /* Hide from screen */
}`enter code here`
}
@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 */
}
}
</style>
</head>
<body>
<header class="onlyprint">header</header>
<!--long text-->
<footer class="onlyprint">footer</footer>
</body>
</html>
这允许我在每页上显示标题。问题是,-因为内容就像一个大块-如果我设置了页边距顶部,在第一页上它可以工作,但在第二页上,文本的连续性直接从顶部开始,并且页眉与它重叠。我看到其他一些帖子也有同样的问题,但答案总是他们应该把内容切碎。对我来说,这不是可选的,因为公司有很多规则,而且页面只显示给定的规则。对不起我的英语,希望你能理解我的问题
最佳答案
尝试将边距添加到页面本身:
@page {
margin: 50px 0;
}