I've just discovered Sass, and I've been so much excited about it.

By the way, in my website I implement a tree-like navigation menu, styled using the combined child selector (E > F).

Is there any way to rewrite this code into a more simpler (or better) syntax on Sass?

#foo > ul > li > ul > li > a {
  color: red;
}
link|improve this question

You need to mark more answers accepted. – BoltClock Sep 8 '11 at 9:42
Can I mark 2 or more answers as accepted on the same post? – frarees Sep 8 '11 at 10:54
You can't, you have to choose the best answer for each question. – BoltClock Sep 8 '11 at 10:58
feedback

2 Answers

up vote 5 down vote accepted

Without the combined chidl selector you would probably do this:

foo {
  bar {
    baz {
      color: red;
    }
  }
}

If you want to reproduce the same syntax with >, you could to this:

foo {
  > bar {
    > baz {
      color: red;
    }
  }
}

This compiles to this:

foo > bar > baz {
  color: red; }

Or in sass:

foo
  > bar
    > baz
      color: red
link|improve this answer
1  
This is just going to make it longer, isn't it? – BoltClock Sep 8 '11 at 9:26
I though this is what OP wants – arnaud576875 Sep 8 '11 at 9:38
nice, thanks. btw, as BoltClock stated, is longer (and somehow uglier for me). Seems like I'll have to stay with my old styling. – frarees Sep 8 '11 at 9:46
you need to define "nicer syntax" ;) – arnaud576875 Sep 8 '11 at 9:48
feedback

For that single rule you have, there isn't any shorter way to do it. The child combinator is the same in CSS and in Sass/SCSS and there's no alternative to it.

However, if you had multiple rules like this:

#foo > ul > li > ul > li > a:nth-child(3n+1) {
    color: red;
}

#foo > ul > li > ul > li > a:nth-child(3n+2) {
    color: green;
}

#foo > ul > li > ul > li > a:nth-child(3n+3) {
    color: blue;
}

You could condense them to one of the following:

/* Sass */
#foo > ul > li > ul > li
    > a:nth-child(3n+1)
        color: red
    > a:nth-child(3n+2)
        color: green
    > a:nth-child(3n+3)
        color: blue

/* SCSS */
#foo > ul > li > ul > li {
    > a:nth-child(3n+1) { color: red; }
    > a:nth-child(3n+2) { color: green; }
    > a:nth-child(3n+3) { color: blue; }
}
link|improve this answer
So there's no transform for the combined child selector... maybe any alternatives to it? – frarees Sep 8 '11 at 9:47
feedback

Your Answer

 
or
required, but never shown

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