How to create a full-page background image with CSS?


Following is the code to create a full-page background image with CSS −

Example

 Live Demo

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
   height: 100%;
   margin: 0;
}
.background {
   background-image: url("https://images.pexels.com/photos/1424246/pexels-photo-1424246.jpeg?  
      auto=compress&cs=tinysrgb&dpr=1&w=1000");
   height: 100%;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}
</style>
</head>
<body>
<div class="background"></div>
</body>
</html>

Output

The above code will produce the following output −

Updated on: 06-Apr-2020

451 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements