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

link|improve this question

feedback

4 Answers

ol {list-style-type: none;}
li:before {content: "(" counter(section, lower-alpha) ") ";}
li { counter-increment: section;}

Test it here: http://jsfiddle.net/Chumillas/NbNvy/

link|improve this answer
Does UIWebView support CSS3? – yakatz May 26 '11 at 7:09
@Chumillas:Can you please give this in html format? – Yogi May 26 '11 at 7:13
@yakatz:I think no.I tried above answer and hence I think it should be in html tag format. – Yogi May 26 '11 at 7:15
@Chumillas:The site given doesn't work,or I couldn't use it properly.Can you please guide? – Yogi May 26 '11 at 7:37
2  
@Yogi, learning CSS is not so hard and is necessary if you plan on working with modern web pages. I am not sure how you plan to write something in HTML without using CSS; HTML is meant for describing the logical structure of a page - CSS for formatting. You need to use the "Semantic Web". You can look at the semantic web using a screen reader meant for blind people. If you used markup to format your page, making it unreadable, then you have a problem. (I'm not saying this applies directly to your iOS project, but it is something general to keep in mind.) [/rant] – yakatz May 26 '11 at 21:18
show 6 more comments
feedback

The best workaround is to put the numbers into the item contents and to use unordered list without bullets.

<ul style="list-style-type: none">
<li>1)item one</li>
<li>2)item two</li>
</ul>

link|improve this answer
Thanks,but if I try this the formatting doesn't look correct i.e.the text comes bellow numbers – Yogi May 26 '11 at 7:20
feedback

That format is not included in standard HTML/CSS.
This site lists the options and this site allows you to try out how they look without writing any code.

link|improve this answer
Thanks for your help but it doesn't contain the style which I want.I want to know how can I customize the style as per my requirements – Yogi May 26 '11 at 7:25
@Yogi, the point of my answer is that you can't get the format you want from traditional HTML and CSS unless you use CSS3 (which will only work if CSS3 is supported in the UIWebView.) – yakatz May 26 '11 at 20:29
feedback
up vote 0 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.