... |
... |
@@ -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 |
} |