CSS反增量属性
要使用CSS增加计数器值,请使用counter-increment属性。
您可以尝试运行以下代码来实现counter-implement属性-
示例
<!DOCTYPE html>
<html>
<head>
<style>
body {
counter-reset: section;
}
h2::before {
counter-increment: section;
content: "Fruit " counter(section) " - ";
}
</style>
</head>
<body>
<h1>Fruits</h1>
<h2>Mango</h2>
<h2>Kiwi</h2>
</body>
</html>