Answers for "how to make background fill the whole screen in html"

CSS
0

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;
}
Posted by: Guest on December-01-2020

Code answers related to "how to make background fill the whole screen in html"

Browse Popular Code Answers by Language