Answers for "@counter css"

CSS
0

css counters

body {
  counter-reset: section;                    /* On initialise le compteur à 0 */
}

h3::before {
  counter-increment: section;                /* On incrémente le compteur section */
  content: "Section " counter(section) " : "; /* On affiche le compteur */
}
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language