Curriculum
Course: CSS
Login

Curriculum

CSS

CSS INTRODUCTION

0/1

CSS Selectors

0/1

CSS Comments

0/1

CSS Padding

0/1

CSS Box Model

0/1

CSS Combinators

0/1

CSS Pseudo-classes

0/1

CSS Pseudo-elements

0/1

CSS Dropdowns

0/1

CSS Image Gallery

0/1

CSS Image Sprites

0/1

CSS Counters

0/1

CSS Website Layout

0/1

CSS Specificity

0/1

CSS Math Functions

0/1
Text lesson

CSS Counters

CSS counters act as “variables” managed by CSS, allowing their values to be incremented by CSS rules (to monitor their usage frequency). They enable adjustments to the appearance of content based on its position within the document.

Automatic Numbering With Counters

CSS counters function similarly to “variables”, where their values can be incremented by CSS rules to track their usage frequency.

To employ CSS counters, the following properties are utilized:

  • counter-reset: Establishes or resets a counter
  • counter-increment: Increases a counter’s value
  • content: Introduces generated content
  • counter() or counters() function: Integrates the value of a counter into an element

To utilize a CSS counter, it must be initially established with counter-reset.

The subsequent example initiates a counter for the page within the body selector, then increments the counter value for each <h2> element, prepending “Section <value of the counter>:” to the start of each <h2> element.

Example

body {
  counter-reset: section;
}

h2::before {
  counter-increment: section;
  content: “Section ” counter(section) “: “;
}

Nesting Counters

In the given instance, a single counter is established for the page (referred to as “section”), alongside a separate counter for each <h1> element (referred to as “subsection”).

The “section” counter will be incremented for every <h1> element, denoting “Section <value of the section counter>.”, while the “subsection” counter will be incremented for each <h2> element, representing “<value of the section counter>.<value of the subsection counter>”.

Example

body {
  counter-reset: section;
}

h1 {
  counter-reset: subsection;
}

h1::before {
  counter-increment: section;
  content: “Section ” counter(section) “. “;
}

h2::before {
  counter-increment: subsection;
  content: counter(section) “.” counter(subsection) ” “;
}

A counter can be advantageous for creating outlined lists as a new instance of a counter is automatically generated in child elements. In this scenario, we utilize the counters() function to inject a string between various levels of nested counters.

 

Example

ol {
  counter-reset: section;
  list-style-type: none;
}

li::before {
  counter-increment: section;
  content: counters(section,”.”) ” “;
}

CSS Counter Properties

Property

Description

content

Utilized with the `::before` and `::after` pseudo-elements to insert generated content.

counter-increment

Increases one or more counter values.

counter-reset

Creates or resets one or more counter values.

counter()

Retrieves the current value of the specified counter.