Skip to content

Instantly share code, notes, and snippets.

@DylanFM
Created August 18, 2010 12:32
Show Gist options
  • Select an option

  • Save DylanFM/534548 to your computer and use it in GitHub Desktop.

Select an option

Save DylanFM/534548 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Image popup</title>
<style>
div {width:160px}
div h1, div p {display:none}
div:hover {width:250px;padding:1em;border:1px solid #ccc}
div:hover h1, div:hover p {display:block}
div:hover img {width:250px;height:auto}
</style>
</head>
<body>
<div>
<h1>Yum</h1>
<img src="http://farm5.static.flickr.com/4070/4547920261_a470131905_m.jpg" width="160" height="240">
<p>Lambda cupcakes</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment