Skip to content

Instantly share code, notes, and snippets.

@mathcale
Created January 5, 2016 18:55
Show Gist options
  • Save mathcale/c89eaedc6a1a013246ef to your computer and use it in GitHub Desktop.
Save mathcale/c89eaedc6a1a013246ef to your computer and use it in GitHub Desktop.
Perfect-fit CSS background
// By CSS-Tricks (SASS-ed by me)
$bgImage: "path/to/image.jpg";
html {
background: url($bgImage) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment