gpt4 book ai didi

css - 如何为目标计数器设置计数器

转载 作者:技术小花猫 更新时间:2023-10-29 11:24:29 28 4
gpt4 key购买 nike

在分页媒体中,CSS 属性 target-counters可用于包含多个计数器。该规范给出了以下示例(已简化):

a::after {
content: "see section " target-counters(attr(href, url), section, ".")
}

应该输出类似于(参见第 1.3.5 节) 的内容。

我将如何设置section 计数器?

最佳答案

来自Generated Content Module (也适用于非分页内容):

Counters are "self-nesting", in the sense that re-using a counter in a child element automatically creates a new instance of the counter.

因此,你可以这样写

<style type="text/css">    
section {counter-increment: section;}
</style>

<section id="foo">
<h1>Root level</h1>
<section id="bar">
<h2>Sub Level</h2>
</section>
</section>

如果您的元素树是扁平的(如 <h1>Root</h1><h2>Sub</h2> ),则无法使用嵌套计数器。

关于css - 如何为目标计数器设置计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6829395/

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