Answers for "make background full on every screen css"

CSS
4

make background full on every screen css

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 "make background full on every screen css"

Browse Popular Code Answers by Language