how to make background image fill screen css code example
Example 1: how to cover full image in css
body {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
Example 2: background image css fill screen
.Background {
background-image: url("Your picture name.jpg");
background-repeat: no-repeat;
height: 100%;
background-position: center;
background-size: cover;
}