50

我正在使用 Flying Saucer 创建 PDF(它将 CSS/HTML 转储到 iText 到 PDF),并且我正在尝试使用 CSS3 将图像页眉和页脚应用于每个页面。

我基本上想把这个 div 放在每个页面的左上角:

<div id="pageHeader">
    <img src="..." width="250" height="25"/>
</div>

我的 CSS 看起来有点像这样:

@page {
    size: 8.5in 11in;
    margin: 0.5in;

    @top-left {
        content: "Hello";
    }
}

有没有办法让我把这个 div 放在content

4

3 回答 3

44

将一个元素放在每个页面的顶部:

@page {
  @top-center {
    content: element(pageHeader);
  }
}
#pageHeader{
  position: running(pageHeader);
}

http://www.w3.org/TR/css3-gcpm/#running-elements(在飞碟中工作)

于 2012-03-16T18:02:06.947 回答
10

在页面上同时包含页眉和页脚(详细说明@Adam 的出色回答):

<style>
@page {

    margin: 100px 25px;
    size: letter portrait;

    @top-left {
        content: element(pageHeader);
    }

    @bottom-left {
        content: element(pageFooter);
    }
}

#pageHeader{
    position: running(pageHeader);
}

#pageFooter{
    position: running(pageFooter);
}

</style>
<body>
    <header id="pageHeader">something from above</header>
    <footer id="pageFooter">lurking below</footer>

    <div>meaningful rambling...</div>
</body>

注意:为了让页脚在每一页上重复,可能需要在其他正文内容之前定义它(对于多页内容)

于 2017-11-29T22:08:39.210 回答
5

我花了很多时间在现代 Chrome、Firefox 和 Safari 上完成这项工作。我用它从 HTML 创建 PDF。您将在不重叠页面内容的情况下将页眉和页脚固定到每个页面。尝试一下:

CSS

<style>
  @page {
    margin: 10mm;
  }

  body {
    font: 9pt sans-serif;
    line-height: 1.3;

    /* Avoid fixed header and footer to overlap page content */
    margin-top: 100px;
    margin-bottom: 50px;
  }

  #header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    /* For testing */
    background: yellow; 
    opacity: 0.5;
  }

  #footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    font-size: 6pt;
    color: #777;
    /* For testing */
    background: red; 
    opacity: 0.5;
  }

  /* Print progressive page numbers */
  .page-number:before {
    /* counter-increment: page; */
    content: "Page: " counter(page);
  }

</style>

HTML

<body>

  <header id="header">Header</header>

  <footer id="footer">footer</footer>

  <div id="content">
    Here your long long content...
    <p style="page-break-inside: avoid;">This text will not be broken between the pages</p>
  </div>

</body>
于 2019-09-27T10:42:18.770 回答