You need to create an ordered or unordered list and you are tired of seeing the same old list characters like the ones below.
- line one
- line two
- line three
- line one
- line two
- line three
How can you customize your lists?
Apply list styles like these:
- circle
- square
- lower alpha character
- upper alpha character
- leading-zero
- lower roman numeral
- upper roman numeral
by doing this:
<ul class=”circle”>
<li>circle</li>
</ul>
<ul class=”square”>
<li>square</li>
</ul>
<ol class=”lower-alpha”>
<li>lower alpha character</li>
</ol>
<ol class=”upper-alpha”>
<li>upper alpha character</li>
</ol>
<ol class=”decimal-leading-zero”>
<li>decimal leading zero</li>
</ol>
<ol class=”lower-roman”>
<li>lower roman numeral</li>
</ol>
<ol class=”upper-roman”>
<li>upper roman numeral</li>
</ol>