Skip to content

Instantly share code, notes, and snippets.

@lifecube
Created July 17, 2012 13:29
Show Gist options
  • Save lifecube/3129401 to your computer and use it in GitHub Desktop.
Save lifecube/3129401 to your computer and use it in GitHub Desktop.
auto resize the background image as cover
html {
background: url(/images/bg.jpg) no-repeat top center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding: 0;
margin: 0;
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment