Home / CSS Tips Generated By ChatGPT / CSS Counters for Custom Counting Implement custom counters for lists or headings. Source Code body { counter-reset: section-counter; } h2::before { counter-increment: section-counter; content: "Section " counter(section-counter) ". "; }