Working with ul list markers in CSS
Setting the list-style-type
property to disc
causes the markers to become filled circles. This is the default value when creating a list:
<ul>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ul>
ul {
list-style-type: disc;
}
: