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.

It doesn't seem to be working. The styles of nth-child(2) need to be differnt on hover if nth-child(3) is .active

CSS:

li:nth-child(3).active ~ li:nth-child(2):hover

HTML:

 <ul>
    <li>
      <h1 id="logo">Logo</h1>
    </li>

    <li>
      <a href="#">Products</a>
    </li>

    <li class="active">
      <a href="#">Parts</a>
    </li>

    <li>
      <a href="#">Resources</a>
    </li>
  </ul>
share|improve this question
Which LI you want to select? – avetarman Aug 18 '11 at 21:21
The second one. – kreutz Aug 18 '11 at 21:21
The styles of nth-child(2) need to be differnt on hover if nth-child(3) is .active – kreutz Aug 18 '11 at 21:24
If you want to select LI, that stays immediately before LI.active, I think it's impossible. You can do that with jQuery. – avetarman Aug 18 '11 at 21:25

2 Answers

up vote 4 down vote accepted

If you need to select li:nth-child(2) only when li:nth-child(3) is .active, it's not possible, because the sibling combinators + and ~ don't look backward.

You have to either modify your HTML to somehow accommodate these conditions, or use DOM traversal (much easier).

share|improve this answer
there is now way to look backwards with css? – kreutz Aug 18 '11 at 21:27
@kreutz: Nope, no way at all. – BoltClock Aug 18 '11 at 21:28
The problem with using li:nth-child(2):hover is that if li:nth-child(3) is .active the styles are different on hover. – kreutz Aug 18 '11 at 21:28

If you want to select the active li and apply a hover, this selector is sufficient: li.active:hover

here is an example fiddle

If you want to select the li before the active li, you are going to need to use JavaScript.

Another option is to recognize which li is the one before the current active li while rendering the JSP (or your technology of choice) page and give it the appropriate hover.

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.