Answers for "how to make the width of the background image same as the background"

CSS
31

background image size css

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 300px 100px;
}
Posted by: Guest on May-28-2020

Code answers related to "how to make the width of the background image same as the background"

Browse Popular Code Answers by Language