Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created March 21, 2013 15:01
Show Gist options
  • Save raphaelchaib/5213711 to your computer and use it in GitHub Desktop.
Save raphaelchaib/5213711 to your computer and use it in GitHub Desktop.
CSS: Fullscreen background
img#fullscreen-bg {
width: 100%;
min-width: 1024px;
height: auto;
position: fixed;
top: 0;
left: 0;
z-index: -999;
}
@media screen and (max-width: 1024px) {
img#fullscreen-bg {
left: 50%;
margin-left: -512px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment