1
I’m trying to make a background with a curved effect, but to put this effect I’m using an image(image link: https://cdn.discordapp.com/attachments/800754994739150878/800893255343538186/wave.png) but I also want to put a gradient effect in the background, but when I put the gradient together with the background-image it just doesn’t work. What can I do?
   <body>
        <section></section>
    </body>
 
   section{
    width: 100%;
    height: 400px;
    background-color: tomato;
    /* background:linear-gradient(90deg, red, blue);  */
    background-image:url(../images/wave.png); 
    background-size: 100% 150px;
    background-position: bottom;
    background-repeat: no-repeat;  
    }