try with counter-reset
ol {
counter-reset: item;
list-style-type: none;
}
li { display: block; }
ol.alpha li:before {
content: counter(item, lower-latin) " ) "; /*(a, b, c, ... z) */
counter-increment: item ;
}
ol.roman li:before {
content: counter(item, lower-roman) " ) "; /*(i, ii, iii, iv, v,)*/
counter-increment: item ;
}
/* List type
decimal (1,2,3,4,)
decimal-leading-zero(01,02,03,04 ...)
lower-roman (i, ii, iii, iv, v, etc)
upper-roman (I, II, III, IV, V, etc.)
lower-latin or lower-alpha (a, b, c, ... z)
upper-latin or upper-alpha (A, B, C, ... Z)
lower-greek (?, ?, ?, ...)
*/
Ordered List without Dot
- Coffee
- Tea
- Milk
- Coffee
- Tea
- Milk