Skip to content

Instantly share code, notes, and snippets.

@juanres
Created March 12, 2014 14:20
Show Gist options
  • Save juanres/9507907 to your computer and use it in GitHub Desktop.
Save juanres/9507907 to your computer and use it in GitHub Desktop.
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; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment