Skip to content

Instantly share code, notes, and snippets.

@geog4046instructor
Last active January 1, 2018 22:46
Show Gist options
  • Save geog4046instructor/bb8fc75f1d50d9d020fa to your computer and use it in GitHub Desktop.
Save geog4046instructor/bb8fc75f1d50d9d020fa to your computer and use it in GitHub Desktop.
Bootstrap 3 - Full-page background image
/* For Bootstrap 3. Create a full-page background image on the Bootstrap "Cover" template
* Cover template: https://getbootstrap.com/examples/cover
* CSS code credit: http://stackoverflow.com/questions/25556622/bootstrap-cover-template-where-to-place-image
*/
body {
background: url(../img/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