How can I get arabic numbers (not numerals) in my ordered lists?
So instead of 1, 2, 3... I need ...١ ٢ ٣
How can I get arabic numbers (not numerals) in my ordered lists?
So instead of 1, 2, 3... I need ...١ ٢ ٣
I tried it here http://jsfiddle.net/e2Gs7/ by using ol {list-style: arabic-indic;}
But i don't know if it's standard CSS...
Include the numbers (as such, or as character references like ٠
) into the list item contents, and either use CSS to prevent browser-generated numbers (list-style-type: none
) or, better, use markup other than ul
, e.g. a div
for each item and them items wrapped (if necessary) inside an outer div
.
Depending on the server software used, you might be able to generate the numbers automatically.