Posted by Jukka K. Korpela on 02/01/07 23:48
Scripsit Pierre Trochu:
> how can I obtain parentheses in an ordered list?
You cannot.
> but I would like to obtain this:
> 1) item one
> 2) item two
The best workaround is to put the numbers into the item contents and to use
<ul> without bullets. (<ul> is illogical, but using <ol> you would take the
risk that when CSS is off, the user sees both the browser-generated numbers
and your numbers.)
Use
<ul style="list-style-type: none">
<li>1)item one</li>
<li>2)item two</li>
</ul>
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
[Back to original message]
|