counter style counter css counters

Solutions on MaxInterview for counter style counter css counters by the best coders in the world

showing results for - "counter style counter css counters"
Giorgio
04 Feb 2019
1body {
2  counter-reset: section;                    /* On initialise le compteur à 0 */
3}
4
5h3::before {
6  counter-increment: section;                /* On incrémente le compteur section */
7  content: "Section " counter(section) " : "; /* On affiche le compteur */
8}
9
Greta
20 Jan 2019
1@counter-style circled-alpha {
2  system: fixed;
3  symbols: Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ;
4  suffix: " ";
5}