Skip to content

Instantly share code, notes, and snippets.

@hukl
Created April 13, 2014 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hukl/10586043 to your computer and use it in GitHub Desktop.
Save hukl/10586043 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>foo</title>
<style>
div#wrapper {
width: 800px;
height: 200px;
background-color: gray;
}
div#wrapper div {
background-color: silver;
width: 300px;
height: 200px;
float: left;
margin-right: 20px;
}
div#wrapper:hover div {
background-color: yellow;
}
</style>
</head>
<body>
<div id='wrapper'>
<div id='left'></div>
<div id='right'></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment