How can I reset a CSS-counter to the start-attribute of the given list
You may just use the attribute start as a filter : ol[start=”10″] { counter-reset: lis 9; } Demo , but this will only apply for this ol attribute. You would need some javaScript in order to retrieve attribute value to apply, generate the correct counter-reset. <ins data-extra=”Use of Scss”> see this : DEMO to generate … Read more