Answers for "how to make background-image fit the whole page in css"

CSS
0

css background full screen

body { 
  background: url(img/bg-image.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
Posted by: Guest on September-17-2020

Code answers related to "how to make background-image fit the whole page in css"

Browse Popular Code Answers by Language