Skip to content

Instantly share code, notes, and snippets.

@shiruken
Created November 25, 2014 16:09
Show Gist options
  • Save shiruken/2bbe389a2e805fb60069 to your computer and use it in GitHub Desktop.
Save shiruken/2bbe389a2e805fb60069 to your computer and use it in GitHub Desktop.
Automatically scale background image to fill page while maintaining dimensions
body {
background: url("background.jpg") 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