Created
June 1, 2017 07:20
-
-
Save pethaniakshay/ec8fd6b7881ea0cc2acdfc50979e8caa to your computer and use it in GitHub Desktop.
Full Page Image - Full Size Back Ground Image In HTML CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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