Skip to content

Instantly share code, notes, and snippets.

@jklm313
Created March 31, 2013 20:45
Show Gist options
  • Select an option

  • Save jklm313/5281938 to your computer and use it in GitHub Desktop.

Select an option

Save jklm313/5281938 to your computer and use it in GitHub Desktop.
Untitled
*, *:after, *:before {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
}
html, body {
height: 100%;
}
body {
background: url(http://www.lorempixel.com/600/500) top left fixed no-repeat;
background-size: cover;
}
.first, .second {
position: absolute;
top: 100%;
left: calc(50% - 300px);
width: 600px;
height: 100%;
background: url(http://www.lorempixel.com/600/500/city) top left no-repeat;
background-size: cover;
overflow: auto;
}
.second {
background: url(http://www.lorempixel.com/600/500/city/2);
}
<div class="first">
<div class="second"></div>
</div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment