我有一个固定的div,用于我的网页

.header-logo{
     width:100%;
height:55px;
position:fixed;
z-index:100;
   }


我使用了一个插件,当我单击“以PDF格式打印”时,我已修复的div重叠在其他div的其他位置。如何使div固定为pdf打印

最佳答案

print-padding类添加到重复标题后的内容块中。

.header-logo {
    position: fixed;
    top: 0;
    display: block;
}
.print-top-padding {
    margin-top: 150px;
}


您可以通过添加margin-bottom对页脚标记执行相同操作。
边距可以根据固定页眉或页脚的高度给出。

10-04 11:52
查看更多