使用 CSS/HTML 的页码

发布于 2024-11-09 13:17:31 字数 116 浏览 0 评论 0原文

一个有趣的用例出现在我们面前,我们要求当我们打印网站时,打印的副本将有页眉和页脚,并在页脚内有页码。

有人知道如何实现这一目标吗?

注意:浏览器版本可以是最新的,客户是其他网络开发人员。

An interesting use case has popped up for us, we are requiring that when we print a website the printed copy will have a page header and footer, and inside the footer the page number.

Anyone got any idea how to achieve this?

Note: Browser version can be the latest of anything, clients are other web developers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷血 2024-11-16 13:17:32

现在到了 2024 年,它可以与 pagedjs 一起使用,它可以作为 polyfill

https://pagedjs.org/documentation/2-getting-started-with-paged.js/#using-paged.js-as-a-polyfill- in-web-browsers

此处示例

<!DOCTYPE html PUBLIC>
<html lang="en" lang="en">

<head>
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <title>
    pagedjs sample - more complex at raisercostin.org/resume
  </title>
  <script src="https://unpkg.com/[email protected]/dist/paged.polyfill.js"></script>
  <style type="text/css">
    @page {
      size: A7 portrait;
      margin: 100px;
      border: solid 1px blue;

      @top-left {
        content: "top left text";
        border: solid 1px red;
      }

      @bottom-right {
        content: "bottom right text";
        border: solid 1px green;
      }
    }
  </style>
</head>

<body>
  content
</body>

</html>

这应该在 chrome 中呈现为

Now in 2024 this works with pagedjs that works as a polyfill

https://pagedjs.org/documentation/2-getting-started-with-paged.js/#using-paged.js-as-a-polyfill-in-web-browsers

Sample here

<!DOCTYPE html PUBLIC>
<html lang="en" lang="en">

<head>
  <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <title>
    pagedjs sample - more complex at raisercostin.org/resume
  </title>
  <script src="https://unpkg.com/[email protected]/dist/paged.polyfill.js"></script>
  <style type="text/css">
    @page {
      size: A7 portrait;
      margin: 100px;
      border: solid 1px blue;

      @top-left {
        content: "top left text";
        border: solid 1px red;
      }

      @bottom-right {
        content: "bottom right text";
        border: solid 1px green;
      }
    }
  </style>
</head>

<body>
  content
</body>

</html>

This should be rendered in chrome as
a7 page rendered

吃不饱 2024-11-16 13:17:31

取决于您所需的浏览器支持。

@page {
  @bottom-right {
    content: counter(page) " of " counter(pages);
  }
}

进一步阅读:

Depending on your required browser support.

@page {
  @bottom-right {
    content: counter(page) " of " counter(pages);
  }
}

Further reading:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文