0
I made an unnumbered list in HTML5, and aligned it to the center. The dots in front of it stay on the left however. How can I align the dots to the middle
2 Respuestas
0
<ul>
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
in your css
ul { list-style: none}
ul li:before {content:"."; margin:auto;}
0
ty