Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a gallery where when you hover over the main image, the thumbnails should become transparent. I would like to achieve this with pure CSS, but I'm not sure if that's possible.

CSS:

/* should affect thumbs but not main */
/* obviously this code wouldn't work */
#main:hover, #thumbs {
  opacity: .5;
}

HTML:

<div id="main">
  Hover over me to change #thumbs
</div>
<div id="thumbs">
  I change when you hover over #main
</div>

Is this possible using pure CSS?

share|improve this question
1  
possible duplicate of On a CSS hover event, can I change another div's styling? – thirtydot Aug 15 '11 at 19:43

6 Answers

up vote 11 down vote accepted

Sure, just use the adjacent sibling selector:

#div1:hover + #div2 {
    ...
}

An example here: http://jsfiddle.net/6BfR6/94/

share|improve this answer
2  
+1 amazing... did not even know this existed! meyerweb.com/eric/articles/webrev/200007a.html – samccone Aug 15 '11 at 19:32
Wow! Thanks! That's absolutely perfect! Just like the guy above me, I had no idea that existed. Perfect. – Rev Aug 15 '11 at 19:34
+1 I had no idea you could do this without Javascript. – Peter Olson Aug 15 '11 at 19:34
+1 Everyone who didn't know about this... prepare to be dazzled! :-) w3.org/TR/css3-selectors/#selectors – andyb Aug 15 '11 at 19:38
1  
@Nightfirecat, yes I know it's a 2.1 selector. I just wanted to show the current full spec of selectors :-) – andyb Aug 15 '11 at 19:51
show 2 more comments

even if it is, it will not work in IE :)

i would suggest using onmouseover event

however it is nice question and I am curious if someone has solution of doing it cross-browser via css

share|improve this answer
It doesn't need to work in IE, I already know how to write the fallback, but I don't think I'm going to bother with that. It's more of a personal site. – Rev Aug 15 '11 at 19:34
@rev: see solution provided by Nightfirecat. It is amazing and it works in IE 7 & 8 - i have tested – mkk Aug 15 '11 at 19:40

Only children of a selector can be affected. Otherwise, you'll need to use javascript.

For instance:

div:hover #childDiv {
  background: green;
}
share|improve this answer

I think you're going to need some javascript for that.

share|improve this answer

No. You would have to use Javascript.

share|improve this answer

#div1:hover + #div2 { ... }

it works fine in IE 7, 8, 9 and 10. No need to any JS or onovermouse and NOT ONLY children of a selector can be affected.

Try the example Link of "Nightfirecat".

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.