Von Version < 13.2 >
bearbeitet von sas
am 18.11.2019, 16:27
Auf Version < 14.1 >
bearbeitet von sas
am 18.11.2019, 16:31
< >
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Inhalt
... ... @@ -25,12 +25,12 @@
25 25  /* Select the container of repeatable elements */
26 26  /* And reset the counter here */
27 27  .xm-item-div[data-xm-dynamic] {
28 - counter-reset: counterWdh;
28 + counter-reset: counter;
29 29  }
30 30  
31 31  /** For each repeated element, increment the counter by one */
32 32  .dynamic-row {
33 - counter-increment: counterWdh;
33 + counter-increment: counter;
34 34  }
35 35  
36 36  /* Select the label text of each for element */
... ... @@ -37,7 +37,9 @@
37 37  .dynamic-row label > p::before,
38 38  .dynamic-row legend::before {
39 39   /** Add the number in front of the label */
40 - content: counter(counterWdh) ". ";
40 + /* Example for using letters instead: content: counter(counter, lower-alpha);
41 + Other possible types: decimal, decimal-leading-zero, lower-roman, upper-roman, lower-greek, lower-latin, upper-latin, armenian, georgian, lower-alpha, upper-alpha */
42 + content: counter(counter) ". ";
41 41   /** And make it blue */
42 42   color: blue;
43 43  }
Copyright 2000-2025