Answers for "how to make background-image in css cover space"

CSS
8

css background image cover

html { 
  background: url(images/bg.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 March-06-2020

Code answers related to "how to make background-image in css cover space"

Browse Popular Code Answers by Language