-1

I have problem with blend two background images. this's image 1 enter image description here

And the second image enter image description here

I want to blend them as curved background, the result should like this enter image description here

CS.R
  • 1
  • 2

1 Answers1

0

Could you be a little more specific on what a curved background means? Also, you could blend the two images by setting them

(tagname, class, id etc. {
background-image:url(enterimageurl1)
background-image:url(enterimageurl2)
background-blend-mode:blend mode to blend the images (you can go to https://www.w3schools.com/cssref/pr_background-blend-mode.asp);
})

And your 2 images should be together!

Rob
  • 14,746
  • 28
  • 47
  • 65