gpt4 book ai didi

html - CSS HTML 页面编号

转载 作者:行者123 更新时间:2023-11-27 23:57:34 25 4
gpt4 key购买 nike

我知道有人问过这个问题。但是我不知道我做错了什么。我希望在打印 html 时将页码打印在页面的右上角。

这是我的代码,有什么问题吗?

<html>
<head>
<style media="print">
@page {
counter-increment: page;
counter-reset: page 1;
@top-right {
content: "Page " counter(page) " of " counter(pages);
}
}
</style>
</head>
<body>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>
<div style="height:800px">hello</div>

</body>
</html>

最佳答案

您问题的答案特定于您尝试使用此 CSS 规则的浏览器。 @top-right CSS at 规则看起来受 IE8 支持,但其他浏览器不支持。

查看 @Page 边距框以获得更多相关信息。

关于html - CSS HTML 页面编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23121794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com