+ 2
What is format for using squares and circle instead of bullet for ul tag?
4 Respuestas
+ 3
Use CSS:
<ul style="list-style-type:circle;">
<li>Circle</li>
</ul>
<ul style="list-style-type:square;">
<li>Square</li>
</ul>
<ul style="list-style-type:lower-alpha;">
<li>Alphabet</li>
</ul>
+ 1
Thanks
0
no problem
0
@NoName I copied and pasted and ran your code, that's fantastic! I saved it like I have been saving the other small code "exercises" I have been running here. Awesome. Eventually I would like to be as proficient as you.