Answers for "how to adjust the background to be in the center using css"

CSS
7

css background image cover center

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 adjust the background to be in the center using css"

Browse Popular Code Answers by Language