Skip to content

Instantly share code, notes, and snippets.

@mongoltolbo
Created June 6, 2013 04:22
Show Gist options
  • Save mongoltolbo/5719297 to your computer and use it in GitHub Desktop.
Save mongoltolbo/5719297 to your computer and use it in GitHub Desktop.
Fullscreen Backgrounds With CSS3
html {
background: url('images/bg.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