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/2019/Coaching.pdf):
Example
4.26 - Ordered List: default - Example 4.26
<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
<br/>
Bill Self
</li>
<li>Sean Miller
</li>
<li>Brad Underwood
</li>
<li>Dave Rose
</li>
<li>Gregg Marshall
</li>
<li>Ray Harper
</li>
</ol>
Winningest Active Coaches, Division I NCAA Men's Basketball
- Mark Few
- Roy Williams
- John Calipari
- Mike Krzyzewski
Bill Self - Sean Miller
- Brad Underwood
- Dave Rose
- Gregg Marshall
- Ray Harper
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
<br/>
Bill Self
</li>
<li>Sean Miller
</li>
<li>Brad Underwood
</li>
<li>Dave Rose
</li>
<li>Gregg Marshall
</li>
<li>Ray Harper
</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
- Brad Underwood
- Dave Rose
- Gregg Marshall
- Ray Harper