Detailed explanation of CSS counter related attributes learning

Detailed explanation of CSS counter related attributes learning

The CSS counter attribute is supported by almost all browsers (including IE8), but it is not often used. This article will show you how to learn about these attributes.

COUNTER-RESET

Clearly translated as counter reset. Such as: counter-reset: counter-name

Commonly written as

/* Set counter-name to 0 */
counter-reset: counter-name;

/* Set counter-name to -1 */
counter-reset: counter-name -1;

/* Set counter1 to 1, and counter2 to 4 */
counter-reset: counter1 1 counter2 4;

Used to reset the counter on an element

COUNTER-INCREMENT

Couter-increment is translated as counter reset

Commonly written as

/* Increment counter-name by 1 */
counter-increment: counter-name;

/* Decrement counter-name by 1 */
counter-increment: counter-name -1;

/* Increment counter1 by 1, and decrement counter2 by 4 */
counter-increment: counter 1 counter2 -4;

Before using counter-increment, we must first use counter-reset to initialize a counter in its parent element.

For example:

// parent element has a counter-reset
// applied to instantiate it
section {
  counter-reset: unicornCounter;
}

// specify the child element being counted
section h1 {
  counter-increment: unicornCounter;
}

In the above code, each h1 element of the section will be set to counted value 1

CSS syntax rules

COUNTER-RESET and COUNTER-INCREMENT have similar syntax

The first <custom-ident> indicates the specific counter identifier

Can be a word composed of az 0-9 _ - but cannot be a keyword none, unset, initial, or inherit

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  MySQL DATE_ADD and ADDDATE functions add a specified time interval to a date

>>:  Javascript scope and closure details

Recommend

How to implement a multi-terminal bridging platform based on websocket in JS

Table of contents 1. What to debug 2. Features of...

Problems and solutions when installing and using VMware

The virtual machine is in use or cannot be connec...

Solve the problem that Docker cannot ping the host machine under Mac

Solution Abandon the Linux virtual machine that c...

Recommended tips for web front-end engineers

Let's first talk about the value of web front...

Use native js to simulate the scrolling effect of live bullet screen

Table of contents 1. Basic principles 2. Specific...

Learn one minute a day to use Git server to view debug branches and fix them

Debug branch During the normal development of a p...

How to define data examples in Vue

Preface In the development process, defining vari...

Example of using UserMap in IMG

usemap is an attribute of the <img> tag, use...

Docker builds CMS on-demand system with player function

Table of contents text 1. Prepare the machine 2. ...

Detailed tutorial on using the Prettier Code plugin in vscode

Why use prettier? In large companies, front-end d...

Use render function to encapsulate highly scalable components

need: In background management, there are often d...

How to use tcpdump to capture packets in Linux system

Let me look at the example code first: 1. Common ...