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.

I tried to implement the following in less:

nav > ul > li:first-child

using:

nav {   
      ul {
          li:first-child {

However the result was:

nav ul li:first-child

Can someone explain the difference between the two CSS results and also tell me how I can use less to get the result "nav > ul > li:first-child"

share|improve this question

2 Answers

up vote 1 down vote accepted

> is called child combinator.

It selects the "direct successor/child" which is exactly one level below it's parent while the normal style selects all child elements below the parent.

<div id="level-1">
  <div id="level-2">
     <div class="level-3"></div>
     <div class="level-3"></div>
  </div>
</div>

#level-1 > div{} /* <- matches #level-2 div */
#level-1 div{}   /* <-matches #level-2 and both .level-3 divs */

for clarification i added a Fiddle.

as for sass you can use:

#level-1{
    > div{
    }
}
share|improve this answer

The normal operation in CSS is "descentant of". That's what less gives you when you don't state a different relationship. Like in this case, "child of":

nav {   
    > ul {
        > li:first-child {

Or, "following sibling":

nav {   
    + ul {
        + li:first-child {
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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