Answers for "how to add multiple background images in css"

CSS
2

css multiple background images

#example1 {
  background-image: url(img_flwr.gif), url(paper.gif);
  background-position: right bottom, left top;
  background-repeat: no-repeat, repeat;
}
Posted by: Guest on May-04-2021

Code answers related to "how to add multiple background images in css"

Browse Popular Code Answers by Language