Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kopiro/9053050 to your computer and use it in GitHub Desktop.
Save kopiro/9053050 to your computer and use it in GitHub Desktop.
A Pen by Flavio De Stefano.
<div id="bgcover" style="background-image:url(http://lorempixel.com/640/1010/city/4)">
<img src="http://lorempixel.com/640/1010/city/4" />
</div>
#bgcover {
width: 1000px;
height: 400px;
background-size: cover;
background-position: center;
position: relative;
}
#bgcover > img {
position: absolute;
display: block;
width: 100%;
height: 100%;
left: 0; right: 0; bottom: 0; top: 0;
opacity: 0; /* here's the trick */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment