> I know how to change the ordered list type to alpha and roman. Is it
> possible, using CSS or XHTML/HTML to change the period to a parenthesis?
> If so, what is the best markup to use?

Not that I know of without some trickery.  Try this (and variations):

ol li:before{ content: "("; }
ol li p:before{ content: ")"; }

<ol>
        <li><p>test</p></li>
        <li><p>list</p></li>
</ol>

If you do li:after for the end parenthesis it will end up after the text
within the li, which is why I did p:before.

I have never tried this before and do not know how it would look (probably
not that great.  And, it obviously would not work on all browsers.  But,
fiddle around with that for a little while and let me know what you come up
with!

Jough



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to