A "lineage" you say? There is no such thing as CSS lineage.
CSS does have grouping, inheritance, cascading order/specificity and other
constructs however.
// grouping example
> (e.g. h1, h2, h3 {....}), selectors that are not separated by commas (e.g.
> #id1 #id2 #id3 h3 {....}
The facts are best learned by reading the actual specifications [1] and
asking "specific" questions in the newsgroups using correct terminology when
something is not understood.
The best CSS editor is TopStyle [2].
<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL
http://clintongallagher.metromilwaukee.com/
[1]
http://www.w3.org/Style/CSS/
[2]
http://www.bradsoft.com/topstyle/
"Murray" <(E-Mail Removed)> wrote in message
news:eBRr%(E-Mail Removed)...
> It defines a 'lineage', for example -
>
> #container #sidebar ul { .... }
>
> would apply to any <ul> that is a child of #sidebar that is a child of
> #container, e.g.,
>
> <div id="container">...<div id="sidebar">...<ul><!-- This
> one -->...</ul></div></div>
>
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "tcarp" <(E-Mail Removed)> wrote in message
> news:1B870086-5313-4F53-976F-(E-Mail Removed)...
>>I know this is FP and it is my authoring tool, however, I've been learning
>> CSS (I think I've seen all the online tutorials) and have been studying
>> examples and have a basic syntax question.
>>
>> In the style sheet I understand that to group selectors you separate them
>> by
>> commas (e.g. h1, h2, h3 {....}), but I see sheets that have multiple
>> selectors that are not separated by commas (e.g. #id1 #id2 #id3 h3 {....}
>> or
>> .p1 a,.p2 a,.p3 a {....} or #id1 .p2 {....}) Are these formats basically
>> setting up an "AND" condition. For example, in the last example does it
>> mean
>> to apply the style specifications to items that have the ID of #id1 AND
>> the
>> class of p2?
>>
>> To keep this at least a little related to FP (2003), beyond the color
>> display, the quick pop ups during tag insertion, and indenting the styles
>> what other cool features does FP2003 have to work with the style sheets?
>>
>> Thanks
>>
>> Tom
>
>