I am working on an iPhone application in which I am loading HTML content in UIWebView. I want to create a list like this format:
(1) item1
(2) item2
(3) item3
|
I am working on an iPhone application in which I am loading HTML content in UIWebView. I want to create a list like this format: (1) item1 (2) item2 (3) item3
| ||||
|
feedback
|
Test it here: http://jsfiddle.net/Chumillas/NbNvy/ | |||||||||||||
feedback
|
|
The best workaround is to put the numbers into the item contents and to use unordered list without bullets.
| |||
feedback
|
|
That format is not included in standard HTML/CSS. | |||||
feedback
|
|
Thank you all guys for your kind answers.... I got the solution by using a different way. Rather than customizing ordered list I used table to show the data in which my numbered list with parenthesis is in 1st column and the related text is in another column. It looks like a nice ordered list. | |||
|
feedback
|