Answers for "dotted list html"

1

ul li dot seprator

ul li { list-style: none; display: inline; }
ul li:after { content: " \00b7"; }
ul li:last-child:after { content: none; }
Posted by: Guest on October-09-2020
8

how to get number list in html

<ol>
<li>Example</li>
<li>Example2</li>
<li>Example3</li>
</ol>
Posted by: Guest on January-18-2020

Browse Popular Code Answers by Language