Skip to content

Instantly share code, notes, and snippets.

@kayz1
Created September 12, 2013 14:11
Show Gist options
  • Save kayz1/6538052 to your computer and use it in GitHub Desktop.
Save kayz1/6538052 to your computer and use it in GitHub Desktop.
<div class="image">
<img src="xy.jpg" alt="" />
<img class="hoverimage" src="xy_hover.jpg" alt="" />
</div>
CSS:
.image { position: relative; width: 184px; height: 219px; }
.hoverimage { position: absolute; top: 0; left: 0; display: none; }
.image:hover .hoverimage { display: block; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment