Skip to content

Instantly share code, notes, and snippets.

@antoniocapelo
Created July 17, 2014 22:35
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 antoniocapelo/ad7d8ad139304460c769 to your computer and use it in GitHub Desktop.
Save antoniocapelo/ad7d8ad139304460c769 to your computer and use it in GitHub Desktop.
Procedure to obtain the background cover effect whichs works on small or large screens
// Procedure to obtain the background cover effect whichs works on small or large screens
html {
background: url(url_to_img) no-repeat center center fixed;
background-size: cover;
height: 100%;
overflow: hidden;
}
body
{
height:100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
background: transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment