Skip to content

Instantly share code, notes, and snippets.

@mayashavin
Created May 22, 2018 18:09
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 mayashavin/7bf89c82631eb360f8ee820e8e2368be to your computer and use it in GitHub Desktop.
Save mayashavin/7bf89c82631eb360f8ee820e8e2368be to your computer and use it in GitHub Desktop.
.parent{
position: relative;
display: inline;
}
.linkme{
position: absolute;
bottom: 0;
right: 0;
opacity: 0;
visibility: hidden;
}
.linkme img {
width: 200px;
height: 100px;
}
.background{
display:inline-block;
}
.parent:hover .linkme{
opacity: 1;
visibility: visible;
}
<div class="parent">
<a class="background">
<img src="https://media1.popsugar-assets.com/files/thumbor/mycOrIvY8rgt24INHoUOskGXIpk/fit-in/2048xorig/filters:format_auto-!!-:strip_icc-!!-/2014/09/19/978/n/1922507/3a1a55fda9cc796d_thumb_temp_image13465311411161397/i/Funny-Cat-Costumes.jpg"/>
</a>
<a class="linkme" href="http://www.mayashavin.com" target="_blank">
<img src="http://cdn.boilerroom.tv/wp-content/uploads/2014/08/cute.jpg?7c4b8e" class="child-photo" />
</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment