Skip to content

Instantly share code, notes, and snippets.

@octavian-nita
Created October 17, 2016 16:19
Show Gist options
  • Select an option

  • Save octavian-nita/1f0d319a3127d1ba4913268853104c49 to your computer and use it in GitHub Desktop.

Select an option

Save octavian-nita/1f0d319a3127d1ba4913268853104c49 to your computer and use it in GitHub Desktop.
Responsive Full Background Images
/* based on http://sixrevisions.com/css/responsive-background-image/ & comments */
html {
background: #464646 url("img/bg-photo.jpg") no-repeat fixed center center;
background-size: cover;
height: 100%;
transform: rotate(0);
}
@media only screen and (max-width: 767px) {
body {
background-image: url("img/bg-photo-mobile.jpg");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment