gpt4 book ai didi

c# - 使用计数器属性时如何将页码放在底部

转载 作者:行者123 更新时间:2023-11-28 07:59:02 29 4
gpt4 key购买 nike

我在 css 中使用 counter 属性创建页码,我试图将其放在页面末尾,我需要使用 pure css

这是我的 CSS:

@media print {
table.break {
page-break-after: left;
}
body {
counter-reset: table;
}
table::after {
counter-increment: table;
content: "page"" "counter(table);
}
.no-print, .no-print * {
display: none;
}
}

最佳答案

CSS
@page {
@bottom {
content: "Page " counter(page) " of " counter(pages)
}
}

此规则将生成页脚,例如“第 1 页,共 89 页”。

更多信息

http://www.princexml.com/doc/page-numbers/

https://stackoverflow.com/a/6109932/4513879

关于c# - 使用计数器属性时如何将页码放在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29916504/

29 4 0