Свойство counter-reset устанавливает переменную, в которой будет храниться счётчик отображений определенного элемента, а также начальное значение счётчика.
Такой счётчик может выводиться с помощью свойства content и псевдоэлементов ::after и ::before.
/* Set "my-counter" to 0 */counter-reset:my-counter;/* Set "my-counter" to -1 */counter-reset:my-counter-1;/* Set "counter1" to 1, and "counter2" to 4 */counter-reset:counter11counter24;/* Cancel any reset that could have been set in less specific rules */counter-reset:none;/* Global values */counter-reset:inherit;counter-reset:initial;counter-reset:unset;