JSFiddle - React, Tailwind, and code Playground
HTML
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
CSS
ol {list-style-type: none;}
li:before {content: counter(section, arabic-indic) ") ";}
li { counter-increment: section;}
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
ol {list-style-type: none;}
li:before {content: counter(section, arabic-indic) ") ";}
li { counter-increment: section;}