使用css / html占位符生成pdf文件时如何将标题放在每个页面的顶部?

时间:2018-02-22 07:52:14

标签: javascript css angularjs frontend

我正在生成“Pdf文件”,第一页顶部有一个标题,下一页顶部标题为HTML代码。The NAME on the bottom should go to next page

<!-- COVER LETTER -->
<div id="cover-letter" ng-show="cover.body && showingCoverLetter">
    <span class="name" ng-show="basics.name">{{basics.name}}</span>
<!-- RESUME -->
<div id="resume" span ng-show="showingResume">
    <span class="name" ng-show="basics.name">{{basics.name}}</span>

求职信和简历是两个不同的页面,“名称”应位于这两个页面的顶部。这是用于打印的CSS代码:

#print-page{
    margin: 0 auto;
    /*Disabled these in print query*/
    mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;
    z-index: 0;
    width:100%;
    position: absolute !important;
    top:0px !important; left:0px !important;
    margin-left: 0;
    margin-top: 0 !important;
    margin-bottom: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: block !important;
    border: none !important;
}

问题是当下载pdf文件时,RESUMEe的“name”会转到COVER LETTER的底部。 我的问题是:你知道解决这个问题的任何方法吗?如何将“名称”放在页面顶部?提前感谢任何建议。

0 个答案:

没有答案