Skip to content

Instantly share code, notes, and snippets.

@Novout
Created May 6, 2021 02:59
Show Gist options
  • Select an option

  • Save Novout/b1b0e869495d1df3f18410e1d75c5457 to your computer and use it in GitHub Desktop.

Select an option

Save Novout/b1b0e869495d1df3f18410e1d75c5457 to your computer and use it in GitHub Desktop.
Fixed background image in all page
.background {
position: fixed;
top: 0;
left: 0;
z-index: -1;
background: #000 url('/path/to/foo.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-height: 100%;
height: auto;
min-width: 1024px;
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment