A>B means any occurence of B that is a child of A. In other words -
<A>
.....
<B></B>
....
</A>
but not -
<body>
<B>...</B>
A*B would refer to any construction that has B as a GRANDCHILD of A, e.g.,
<A>
....
<C>
....
<B></B>
....
</C>
....
</A>
but not when B is a closer descendent to A, e.g.,
<A>
....
<B></B>
....
</A>
There are also adjacent-sibling selectors -
A+B
which would select any occurrence of A immediately followed by B.
Support for all of these selctor usages is incomplete at present....
--
Murray
--------------
MVP FrontPage
"Trevor L." <Trevor_L.@Canberra> wrote in message
news:(E-Mail Removed)...
>
> Maybe a bit OT as it is a CSS question
>
> I have seen CSS styles like
> A*B
> (I can't recall an example)
> A>B
> e.g html>body
>
> What does this syntax mean ?
>
>
> --
> Cheers,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>