2023 年有没有办法用简单的 CSS 在 HTML 页面上打印页码

Is there any way to print page number on HTML page with simple CSS in 2023

提问人:Aditya Dwivedi 提问时间:6/15/2023 更新时间:6/15/2023 访问量:167

问:

我正在尝试在 HTML 页面上打印页码,但没有任何效果。我已经使用过这些代码

第一个代码在这里...

#content {
    display: table;
}

#pageFooter {
    display: table-footer-group;
}

#pageFooter:after {
    counter-increment: page;
    content: counter(page);
}

第二个代码在这里...

@page {
  @bottom-left {
    content: counter(page) ' of ' counter(pages);
  }
}

我正在等待你的回应。:)

php html css 谷歌浏览器 打印

评论


答: 暂无答案