Skip to content

Instantly share code, notes, and snippets.

@pethaniakshay
Created June 1, 2017 07:20
Show Gist options
  • Save pethaniakshay/ec8fd6b7881ea0cc2acdfc50979e8caa to your computer and use it in GitHub Desktop.
Save pethaniakshay/ec8fd6b7881ea0cc2acdfc50979e8caa to your computer and use it in GitHub Desktop.
Full Page Image - Full Size Back Ground Image In HTML CSS
<!DOCTYPE html>
<html>
<head>
<style>
body, html {
height: 100%;
margin: 0;
}
.bg-pic {
/* The image used */
background-image: url("your-img.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<div class="bg-pic"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment