Answers for "CSS make image fill whole background"

CSS
6

CSS make image fill whole background

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 November-26-2019
0

css fill div with background image

div {
  background-image: url("example.com/image.png");
  background-size: 100% 100%;
}
Posted by: Guest on June-02-2020

Code answers related to "CSS make image fill whole background"

Browse Popular Code Answers by Language