List style
The list style class sets the list-style property. It controls the appearance of list item markers.
| CSS Shortcut class | Applied style |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Examples
Circle
list-circle
- This list marker is a circle.
- This list marker is a circle.
- This list marker is a circle.
<ul class="list-circle">
<li>This list marker is a circle.</li>
<li>This list marker is a circle.</li>
<li>This list marker is a circle.</li>
</ul>
Disc
list-disc
- This list marker is a filled-in circle.
- This list marker is a filled-in circle.
- This list marker is a filled-in circle.
<ul class="list-disc">
<li>This list marker is a filled-in circle.</li>
<li>This list marker is a filled-in circle.</li>
<li>This list marker is a filled-in circle.</li>
</ul>
Square
list-square
- This list marker is a square.
- This list marker is a square.
- This list marker is a square.
<ul class="list-square">
<li>This list marker is a square.</li>
<li>This list marker is a square.</li>
<li>This list marker is a square.</li>
</ul>
Decimal
list-decimal
- This list marker uses numbers.
- This list marker uses numbers.
- This list marker uses numbers.
<ol class="list-decimal">
<li>This list marker uses numbers.</li>
<li>This list marker uses numbers.</li>
<li>This list marker uses numbers.</li>
</ol>
Decimal leading zero
list-decimal-leading-zero
- This list marker uses a numbered list starting with 0.
- This list marker uses a numbered list starting with 0.
- This list marker uses a numbered list starting with 0.
<ol class="list-decimal-leading-zero">
<li>This list marker uses a numbered list starting with 0.</li>
<li>This list marker uses a numbered list starting with 0.</li>
<li>This list marker uses a numbered list starting with 0.</li>
</ol>
Uppercase Roman
list-upper-roman
- This list marker is an uppercase Roman numeral.
- This list marker is an uppercase Roman numeral.
- This list marker is an uppercase Roman numeral.
<ol class="list-upper-roman">
<li>This list marker is an uppercase Roman numeral.</li>
<li>This list marker is an uppercase Roman numeral.</li>
<li>This list marker is an uppercase Roman numeral.</li>
</ol>
Lowercase Roman
list-lower-roman
- This list marker is a lowercase Roman numeral.
- This list marker is a lowercase Roman numeral.
- This list marker is a lowercase Roman numeral.
<ol class="list-lower-roman">
<li>This list marker is a lowercase Roman numeral.</li>
<li>This list marker is a lowercase Roman numeral.</li>
<li>This list marker is a lowercase Roman numeral.</li>
</ol>
Uppercase alpha
list-upper-alpha
- This list marker is uppercase alphabetical.
- This list marker is uppercase alphabetical.
- This list marker is uppercase alphabetical.
<ol class="list-upper-alpha">
<li>This list marker is uppercase alphabetical.</li>
<li>This list marker is uppercase alphabetical.</li>
<li>This list marker is uppercase alphabetical.</li>
</ol>
Lowercase alpha
list-lower-alpha
- This list marker is lowercase alphabetical.
- This list marker is lowercase alphabetical.
- This list marker is lowercase alphabetical.
<ol class="list-lower-alpha">
<li>This list marker is lowercase alphabetical.</li>
<li>This list marker is lowercase alphabetical.</li>
<li>This list marker is lowercase alphabetical.</li>
</ol>
None
list-none
- This is a list item without a list marker.
- This is a list item without a list marker.
- This is a list item without a list marker.
<ul class="list-none">
<li>This is a list item without a list marker.</li>
<li>This is a list item without a list marker.</li>
<li>This is a list item without a list marker.</li>
</ul>
xs:> 480pxsm:> 640pxmd:> 768pxlg:> 1024pxxl:> 1280px
<div class="xs:list-disc ...">
...
</div>