Ordered Markers

As with the markers for unordered lists, the markers for the ordered lists is also specified with the list-style-type property:

HTML file: Displayed by browser:
<style>
ol.a {list-style-type: decimal;}
ol.b {list-style-type: decimal-leading-zero;}
ol.c {list-style-type: upper-alpha;}
ol.d {list-style-type: lower-alpha;}
ol.e {list-style-type: upper-roman;}
ol.f {list-style-type: lower-roman;}
ol.g {list-style-type: armenian;}
ol.h {list-style-type: georgian;}
ol.i {list-style-type: lower-greek;}
ol.j {list-style-type: none;}
</style>
<body>
<ol class="a">
    <li><b>Decimal Type (default)</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="b">
    <li><b>Decimal-Leading Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="c">
    <li><b>Upper-Alpha Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="d">
    <li><b>Lower-Alpha Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="e">
    <li><b>Upper-Roman Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="f">
    <li><b>Lower-Roman Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="g">
    <li><b>Armenian Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="h">
    <li><b>Georgian Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="i">
    <li><b>Lower-Greek Type</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>

<ol class="j">
    <li><b>None</b></li>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Pop</li>
</ol>
</body>
  1. Decimal Type (default)
  2. Coffee
  3. Tea
  4. Pop
  1. Decimal-Leading Type
  2. Coffee
  3. Tea
  4. Pop
  1. Upper-Alpha Type
  2. Coffee
  3. Tea
  4. Pop
  1. Lower-Alpha Type
  2. Coffee
  3. Tea
  4. Pop
  1. Upper-Roman Type
  2. Coffee
  3. Tea
  4. Pop
  1. Lower-Roman Type
  2. Coffee
  3. Tea
  4. Pop
  1. Armenian Type
  2. Coffee
  3. Tea
  4. Pop
  1. Georgian Type
  2. Coffee
  3. Tea
  4. Pop
  1. Lower-Greek Type
  2. Coffee
  3. Tea
  4. Pop
  1. None
  2. Coffee
  3. Tea
  4. Pop

Back button Table of Contents Next button