Skip to content

Instantly share code, notes, and snippets.

@William-Hill
Created February 11, 2018 16:54
Show Gist options
  • Save William-Hill/6d16c059ceaaf044154a1c674e16e674 to your computer and use it in GitHub Desktop.
Save William-Hill/6d16c059ceaaf044154a1c674e16e674 to your computer and use it in GitHub Desktop.
Responsive background image
html{
width: 100vw; height: 100vh;
}
body {
width: 100vw;
height: 100vh;
/*Replace with some_image with image url/path*/
background: url("some_image.png");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment