/* 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;
// parent element has a counter-reset// applied to instantiate itsection { counter-reset: unicornCounter;}// specify the child element being countedsection h1 { counter-increment: unicornCounter;}