Re: need help with applying style

> One of my pages uses nested ol lists to catagorize data.
> What I am trying to do is to apply bold style to the top
> level only , leaving sub levels in regular face.
> Unfortunately the inheritance ?feature? of css makes all
> levels appear the same.  It seems unnecessarily complex
> to have to tag each sublist as regular face ... is there an 
> alternative method around this other than using headings
> for top level and reorganizing markup ???
> John Russell, VE3LL@RAC.CA
> http://www.cgocable.net/~jrussel
> Please send complaints to my legal reps
> Dewey, Cheatum & Howe  ATTN: Sue Alotte

Normally these two rules should work:
ol {font-weight: bold}
li ol {font-weight: normal}

Received on Thursday, 5 April 2001 11:29:22 UTC