I have seen this character a number of times in CSS files but I have no idea how its used. Can anyone explain it to me and show how they are useful in making a page style easier?
|
|
It's a CSS child selector. Note that "child" means "immediate descendant", not just any descendant. |
|||||||||||||
|
will match any
On the other hand,
Will match only
But not:
|
|||
|
|
|
this is known as a Child Combinator:
(from http://www.xml.com/pub/a/2003/06/18/css3-selectors.html) |
|||
|
|
more on http://www.w3.org/TR/CSS21/selector.html#child-selectors |
||||
|
|