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

I think this is a very basic question but I not sure how/if it can be done.

What I want to do is to is a certain div is hovered, affect the properties of another div.

For example, in this simple example when you hover over #cube it changes the background-color but what I that when I hover over #container, #cubeis affected.

I don't want to explain further cause I think it might be confusing, but please ask the the question is no clear enough!

share|improve this question

3 Answers

up vote 47 down vote accepted

If the cube is directly inside the container:

#container:hover > #cube { background-color: yellow; }

If cube is next to (after containers closing tag) the container:

#container:hover + #cube { background-color: yellow; }

If the cube is somewhere inside the container:

#container:hover #cube { background-color: yellow; }
share|improve this answer
Well that is something new to me!! I'll give it a try! – Trufa Dec 21 '10 at 18:39
7  
Don't forget the general sibling combinator ~ for 'cube is somewhere after container in the DOM and shares a parent' – robertc Dec 21 '10 at 18:50
That's a +1 :) - – Trufa Dec 21 '10 at 18:55
That's pretty cool. Is there some source where I can find more information about that ? Is it supported by all browser, is it CSS3 ? Would be great to have some more info about that. Thanks so much! – Anonymous Oct 19 '11 at 10:35
More info on CSS selectors: w3schools.com/cssref/css_selectors.asp – Mike Oct 19 '11 at 13:04

In this particular example, you can use:

#container:hover #cube {
    background-color: yellow;   
}

This only works since cube is a child of container. For more complicated scenarios, you'd need to use javascript.

share|improve this answer
that is EXACTLY what I needed thank you!!! – Trufa Dec 21 '10 at 18:32
Oh, ok! thanks for the clarification, I hadn't noticed! thxs!!! – Trufa Dec 21 '10 at 18:34

Big thanks to Mike and Robertc for their helpful posts!

If you have two elements in your HTML and you want to :hover over one and target a style change in the other the two elements must be directly related--parents, children or siblings. This means that the two elements either must be one inside the other or must both be contained within the same larger element.

I wanted to display definitions in a box on the right side of the browser as my users read through my site and ':hover' over highlighted terms; therefore, I did not want the 'definition' element to be displayed inside the 'text' element.

I almost gave up and just added javascript to my page, but this is the future dang it! We should not have to put up with back sass from CSS and HTML telling us where we have to place our elements to achieve the effects we want! In the end we compromised.

While the actual HTML elements in the file must be either nested or contained in a single element to be valid ':hover' targets to each other, the css 'position' attribute can be used to display any element where ever you want. I used position:fixed to place the target of my ':hover' action where I wanted it on the user's screen regardless to its location in the HTML document.

The html:

<div id="explainBox"class="explainBox">                             /*Common parent*/

    <a class="defP"id="light" href="http://en.wikipedia.or/wiki/Light">
        Light                                            /*highlighted term in text*/
    </a>


    is as ubiquitous as it is mysterious.                              /*plain text*/

 <div id="definitions">                /*Container for :hover-displayed definitions*/

    <p class="def" id="light">                           /*example definition entry*/
        Light: </br>Short Answer: The type of energy you see
    </div>


</div>

The css:

/*read: "when user hovers over #light somewhere inside #explainBox
set display to inline-block for #light directly inside of #definitions.*/

#explainBox #light:hover~#definitions>#light{
    display:inline-block;
}
.def{
    display:none;
}
#definitions{
background-color:black;
position:fixed;  /*position attribute*/
top:5em;         /*position attribute*/
right:2em;       /*position attribute*/
width:20em;
height:30em;
border: 1px solid orange;
border-radius:12px;
padding:10px;
}

In this example the target of a ':hover' command from an element within #explainBox must either be #explainBox or also within #explainBox. The position attributes assigned to #definitions force it to appear in the desired location (outside #explainBox) even though it is technically located in an unwanted position within the HTML document.

I understand it is considered bad form to use the same #id for more than one HTML element; however, in this case the instances of #light can be described independently due to their respective positions in uniquely #id'd elements. Is there any reason not to repeat the id '#light' in this case?

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.