Skip to content

Instantly share code, notes, and snippets.

@mikedugan
Created November 7, 2013 14:24
Show Gist options
  • Save mikedugan/7355354 to your computer and use it in GitHub Desktop.
Save mikedugan/7355354 to your computer and use it in GitHub Desktop.
full screen backgrounds
/* full screen centered background image. Change the image name and directory to suit */
body {
background:url(../images/sunset.jpg) 50% 0 no-repeat 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