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 child", not "descendant". |
|||
|
|
|
Hi Sam, 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 |
||
|
|
|
|
Be aware that it requires Windows Internet Explorer 7 or later. Or FF or some modern browser. http://msdn.microsoft.com/en-us/library/aa358819(VS.85).aspx |
||
|
|
|
|
will match any
On the other hand,
Will match only
But not:
|
||
|
|
