Possible Duplicate:
What does “>” mean in CSS rules?
Well, what the title says I 'spose; I have seen the chevron (>) used in CSS code a few times, but I can't work out what it does. Could someone shed some light on this subject matter please?
Well, what the title says I 'spose; I have seen the chevron ( |
|||||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It means immediate children. Thus if you have three tiers of divs:
and you have a selector
then it will affect the second level div, and not the third. If you just have a space between the selectors instead of the Hope that helps. NOTE: The If you're looking into less-well-used CSS selectors, you may also want to look at This page has a full list of all available selectors, along with details of their support in various browsers (its mainly IE that has problems), and good examples of their usage. |
|||||||||||||
|
|
It means direct descendant/child (as opposed to any level deep descendant when just space is used) I.E.:
And in CSS
|
|||||||||||
|
|
It is the CSS child selector. Example:
See this |
|||
|
|
|
It declares parent reference, look at this page for definition: |
|||
|
|
|
It is a Child Selector. It matches when an element is the child of some element. It is made up of two or more selectors separated by ">". Example(s): The following rule sets the style of all P elements that are children of BODY:
Example(s): The following example combines descendant selectors and child selectors:
It matches a P element that is a descendant of an LI; the LI element must be the child of an OL element; the OL element must be a descendant of a DIV. Notice that the optional white space around the ">" combinator has been left out. |
|||
|
|
|
As others have said, it's a direct child, but it's worth noting that this is different to just leaving a space... a space is for any descendant.
To match that, you could do |
|||||
|
|
|
It allows you to select the children of the element. Refer to this article for more details. |
|||
|
|
|
It means parent/child example: html>body that's saying that body is a child of html Check out: Selectors |
||||
|
|