hover over one element to effect another element css code example
Example 1: make action on hover on other element
#container:hover ~ #cube { background-color: yellow; }
Example 2: make action on hover on other element
#container:hover #cube {
background-color: yellow;
}