how to set a background image in css to fill the screen code example
Example 1: 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;
}
Example 2: how to cover whole webpage by background image in html
background: url(images/bg.jpg) no-repeat center center fixed;
background-size: cover;