css hover action on other element code example
Example 1: make action on hover on other element
#container:hover ~ #cube { background-color: yellow; }
Example 2: css hover change other element
#container:hover > #cube { background-color: yellow; }