I tried to use ordered list and each list item outputs as 1. 2. 3. ... etc, I want the output to be 1) 2) 3) ... etc, can thi
You can do this with CSS counter and pseudo elements:
ol li{ list-style: none; counter-increment: myIndex; } ol li:before{ content:counter(myIndex)") "; }
test test test test test