How can I get multiple divs to transition/animate on one hover trigger?
See the update here: http://jsfiddle.net/hecyn/9/ >> CSS-Line:23 All I'm trying to here, is to get .inner and .wrap2 to rotate on one .wrap:hover. Its not working, when I add the "+" selector. How can I right this better.
Primary Question: So simply how can I write this below:
#container:hover + #cube1 + #cube2 + #cube3 { background-color: yellow; }
Second question: Above would be ok, but ultimately Im kinda trying to achieve this via CSS:
#:hoverOverSomething then{
Do this thing;
Do this other thing;
Do this next thing;
}
Bear with me, little new to CSS animations... and the net is clouded and without specific simple information. Cheers.