Skip to content

Instantly share code, notes, and snippets.

@ctaylor
Forked from lifecube/gist:3129401
Created November 8, 2012 20:01
Show Gist options
  • Save ctaylor/4041160 to your computer and use it in GitHub Desktop.
Save ctaylor/4041160 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