Skip to content

Instantly share code, notes, and snippets.

@dvdrtrgn
Created April 27, 2021 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvdrtrgn/118064ef506cb639ae316423a6ce3142 to your computer and use it in GitHub Desktop.
Save dvdrtrgn/118064ef506cb639ae316423a6ce3142 to your computer and use it in GitHub Desktop.
Fixed body background cover on mobile
body::after {
background-image: url(./images/bkgr.png);
background-position: center;
background-size: cover;
content: '';
position: fixed;
bottom: 0;
left: 0;
right: 0;
top: 0;
z-index: -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment