I use the following css to display the step counter:
:before { content: "step " counter(fieldsets); counter-increment: fieldsets; }
But I was wondering if it is possible to display the total number of elements, for example:
:before { content: "step " counter(fieldsets) " of " total_number_of_fieldsets; counter-increment: fieldsets }
I would like it to be a pure css solution, is this possible?
source share