I have the following code: JSFiddle
HTML:
<div class="profile-image">
  <a href="#"><img src="image.png" /></a>
</div>
CSS:
.profile-image img {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 500px;
  display: block;
}
The image tag in the HTML must be there.
How can I make it so that when you hover over the image in the image tags, it shows another image over top of it?
 
     
     
     
     
    