Square ul list markers in CSS
If we set the list-style-type
property to square
, we will get square markers for our 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: square;
}
:
Repeat the page according to this example: