I use CSS to count sections in an HTML document:
body {counter-reset: sect;} section:before { counter-increment: sect; content: 'Section ' counter(sect, upper-alpha); } The result is:
Section A
Section B
How can I style the counter to output numbers written in English?
Section One
Section Two
I have a solution via jQuery (using an array of strings) but I am looking to only use CSS. Is there a way to do this without using JavaScript?