How to remove period (.) From OL numbering?
3 answers
Honestly, the only way to do what you want to completely cross the browser is to not use list numbering at all. Just put list-style:none
in the list and enter the numbers manually:
<ol>
<li>1 The first item</li>
<li>2 The second item</li>
</ol>
If you are creating a server-side code, then this is much easier because you can use an additional variable in your loop.
+1
a source to share