Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
That's actually a "greater than" symbol. Chevrons (as far as I remember) Are up or down directional "v's." – Kyle Sevenoaks Dec 16 '10 at 10:41
Do you have an example maybe :) – David Mårtensson Dec 16 '10 at 10:43
1  
Oh crap, marked as duplicate of the wrong question. It's actually a dupe of this stackoverflow.com/questions/3225891/… – BoltClock Dec 16 '10 at 10:44
@Bolt: It's ok. I marked it as a dupe of the right question, so now at least the right one will appear in the list. – AgentConundrum Dec 16 '10 at 10:47
1  
Let him accept my answer and let's call it a day. – Adam Kiss Dec 16 '10 at 10:48
show 2 more comments

marked as duplicate by BoltClock, AgentConundrum, Bojangles, Gareth, Josh Lee Dec 16 '10 at 11:22

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.

8 Answers

up vote 69 down vote accepted

It means immediate children.

Thus if you have three tiers of divs:

<div class='a'>
    <div>
        <div>...</div>
    </div>
</div>

and you have a selector

.a > div { ... }

then it will affect the second level div, and not the third.

If you just have a space between the selectors instead of the >, then it will affect both the second and third level divs. (The space is much more commonly used and defines a "descendant selector", which means it looks for any matching element down the tree rather than just immediate children as the > does)

Hope that helps.

NOTE: The > selector is not supported by IE6. It does work in all other current browsers though, including IE7 and IE8.

If you're looking into less-well-used CSS selectors, you may also want to look at +, ~, and [attr] selectors, all of which can be very useful.

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.

share|improve this answer
Thanks for your answer - the examples are much appreciated. As for the space, that's a little tight in terms of syntax, but it's good to get the extra behaviour. – Bojangles Dec 16 '10 at 10:46
1  
@JamWaffles - I've added more info, along with a link to Quirksmode.org which should help your research. – Spudley Dec 16 '10 at 10:54
Neat! Thanks for the link. I already use the [attr] selector in a few of my projects. I'll look into + and ~ too. – Bojangles Dec 16 '10 at 10:56
...and by 'current', he means every browser your visitors use... unless, of course, you don't have more than 2% of your users using IE6 – Adam Kiss Dec 16 '10 at 11:03
@JamWaffles - if you're using [attr] then you're safe with > and '~' because browser support for those three is about the same. '+' is a bit flaky in IE7+8 but is usable. – Spudley Dec 16 '10 at 11:43
show 1 more comment

It means direct descendant/child (as opposed to any level deep descendant when just space is used)

I.E.:

<div>
  <p><b>John 1</b></p>
  <p><b>John 2</b></p>
  <b>John 3</b>
</div>

And in CSS

div b { color: red; } /* every John is red */
div>b { color: red; } /* Only John 3 is red */
share|improve this answer
7  
+1 The only example showing the difference between the whitespace combinator and the > combinator. You may want to give div>b a different color to better illustrate the difference though. – BoltClock Dec 16 '10 at 10:45
@Adam Kiss: Don't worry, over time as votes accumulate I believe you'll be on your way to Populist... check back next year :D – BoltClock Dec 16 '10 at 11:25
@Adam Kiss - don't worry; you still scored more rep points than I did. (and I voted for your answer too, so no hard feelings, eh?) – Spudley Dec 16 '10 at 12:08
No hard feelings for people giving great answers Spudley :] – Adam Kiss Dec 16 '10 at 15:37

It is the CSS child selector. Example:

div > p selects all paragraphs that are direct children of div.

See this

share|improve this answer

It declares parent reference, look at this page for definition:

http://www.w3schools.com/Css/css_reference.asp

share|improve this answer

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:

body > P { line-height: 1.3 }

Example(s):

The following example combines descendant selectors and child selectors:

div ol>li p

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.

share|improve this answer

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.

<div>
  <span>Some text</span>
</div>

div>span would match this, but it would not match this:

<div>
  <p><span>Some text</span></p>
</div>

To match that, you could do div>p>span or div span.

share|improve this answer
You're missing a not after your first example :) – Janis Peisenieks Dec 16 '10 at 10:47
Thanks :) Fixed. – Nathan MacInnes Dec 16 '10 at 11:44

It allows you to select the children of the element.

Refer to this article for more details.

share|improve this answer

It means parent/child

example:

html>body

that's saying that body is a child of html

Check out: Selectors

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.