remove-bullets-from-unordered-html-list
How do you remove the bullets from an unordered html list?
<ul style='list-style-type: none'>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
<li>x</li>
</ul>Use css style list-style-type: none of course!
Remarkbox
Comments