List: Ordered Markers

A type attribute can be added to an ordered list, to define the type of the marker:

Type "1": Numbers (this is the default)
<ol type="1">
  1. Coffee
  2. Tea
  3. Milk
Type "A": Uppercase Letters
<ol type="A">
  1. Coffee
  2. Tea
  3. Milk
Type "a": Lowercase Letters
<ol type="a">
  1. Coffee
  2. Tea
  3. Milk
Type "I": Uppercase Roman Numerals
<ol type="I">
  1. Coffee
  2. Tea
  3. Milk
<p>Type "i": Lowercase Roman Numerals</p>
<ol type="i">
  1. Coffee
  2. Tea
  3. Milk

Back button Table of Contents Next button