Answers for "how to set a background image in css to fill the screen"

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 set a background image in css to fill the screen"

Browse Popular Code Answers by Language