SVG as background image to fill entire container
Hi, I’m trying to get this image which was saved as an SVG to fill the entire background, I’ve tried setting the background size to cover/contain but still won’t work.
Here’re the CSS code
.testimonial-section {
background-image: url(images/bg-curve-desktop.svg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-position: center;
background-color: orange;
}
Here’s what I get
And here’s what I’m trynna achieve
Here’re the CSS code
.testimonial-section {
background-image: url(images/bg-curve-desktop.svg);
background-repeat: no-repeat;
background-size: 100% 100%;
background-position: center;
background-color: orange;
}
Here’s what I get
And here’s what I’m trynna achieve


