1

I want to create an HTML list like

a) first Point
b) second Point
c) third Point 

but there isn't a option like that in the HTML type-attribute. A solution with CSS would be even better. For me it is important, that the code works in every common browser.

PM 77-1
  • 12,933
  • 21
  • 68
  • 111
Gehtnet
  • 443
  • 10
  • 25
  • In html use <ol> 'ordered list' to have letters as placeholders you need to use CSS: **ol{list-style-type:lower-latin;}** for lower case latin list markers. – Arif Burhan Apr 09 '16 at 17:53

1 Answers1

0

Lists support numbers and letters through the type attribute. <ol type="1|a|A|i|I"> for lowercase letters in your list use the lower case a. e.g. https://jsfiddle.net/4jyc978o/

<ol type="a">
<li> first point</li>
<li> second point</li>
<li> third point</li>
</ol>
cjmling
  • 6,896
  • 10
  • 43
  • 79
u07ch
  • 13,324
  • 5
  • 42
  • 48