UL-lijstmarkeringen als cirkels in CSS
De waarde circle in de eigenschap list-style-type
maakt het mogelijk om markeringen als cirkels te maken:
<ul>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
<li>lijstitem</li>
</ul>
ul {
list-style-type: circle;
}
:
Herhaal de pagina volgens dit voorbeeld: