hover a div and change style in another code example
Example 1: css hover change another element
#a:hover ~ #b {
background: #ccc
}
Div A
random other elements
random other elements
random other elements
Div B
Example 2: css hover change other element
#container:hover > #cube { background-color: yellow; }