Answers for "how to create background width in css"

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
0

how to make background color smaller css

width: ;
Posted by: Guest on October-21-2021

Code answers related to "how to create background width in css"

Browse Popular Code Answers by Language