Lists
- list-style-type
- disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none
- list-style-image
- list-style-position
- list-style
a shorthand property
Ordered List
An ordered list (data from: http://fs.ncaa.org/Docs/stats/m_basketball_RB/2020/Coaches.pdf):
Example
4.27 - Ordered List: default - Example 4.27
<strong>Winningest Active Coaches, Division I NCAA Men's Basketball </strong>
<ol>
<li>Mark Few
</li>
<li>Roy Williams
</li>
<li>John Calipari
</li>
<li>Mike Krzyzewski
</li>
<li>Bill Self
</li>
<li>Sean Miller
</li>
<li>Tony Bennett
</li>
<li>Ray Harper
</li>
<li>Tom Izzo
</li>
<li>Bruce Pearl
</li>
</ol>
Winningest Active Coaches, Division I NCAA Men's Basketball
- Mark Few
- Roy Williams
- John Calipari
- Mike Krzyzewski
- Bill Self
- Sean Miller
- Tony Bennett
- Ray Harper
- Tom Izzo
- Bruce Pearl
Ordered List
An ordered list:
<strong>Winningest Active Coaches, Division I NCAA Men's Basketball </strong>
<ol class="basketball">
<li>Mark Few
</li>
<li>Roy Williams
</li>
<li>John Calipari
</li>
<li>Mike Krzyzewski
</li>
<li>Bill Self
</li>
<li>Sean Miller
</li>
<li>Tony Bennett
</li>
<li>Ray Harper
</li>
<li>Tom Izzo
</li>
<li>Bruce Pearl
</li>
</ol>
In style
element
(<style>
) within head
element:
ol.basketball {
list-style: upper-roman;
}
Winningest Active Coaches, Division I NCAA Men's Basketball
- Mark Few
- Roy Williams
- John Calipari
- Mike Krzyzewski
- Bill Self
- Sean Miller
- Tony Bennett
- Ray Harper
- Tom Izzo
- Bruce Pearl