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
1@counter-style circled-alpha {
2 system: fixed;
3 symbols: Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ;
4 suffix: " ";
5}