I want to show below list itmes with thai character ordering -
ก. Lorem Ipsum dolor
ข. Lorem Ipsum dolor
ค. Lorem Ipsum dolor
I have tried with list-style-type:thai; but this is showing thai numbers in list.
<ol style="list-style-type:thai;">
<li>Lorem ipsum dolor</li>
<li>Lorem ipsum dolor</li>
<li>Lorem ipsum dolor</li>
</ol>
How can I generate this?

W3C has a proposal on defining an additional value to
list-style-type,thai-alphabetic. Unfortunately, it is not yet supported by popular browsers.Nothing, however, prevents you from defining it in your documents:
CSS:
Mind the
systemattribute as it defines how numeric value is converted to your representation. In particular, example given above would render list item #11 asกก.while you may need the continuation throughout all available Thai consonants.HTML: