Struggling to get both a background gradient and a background image (transparent PNG) to display in my div. No matter what, only the color gradient shows up while the image remains hidden. If I use a solid color instead of a gradient, the image displays just fine. Here's how my CSS looks right now:
div {
background: linear-gradient(180deg, rgba(224, 34, 153, 1) 0%, rgba(88, 0, 55, 1) 100%), url('path/to/image/png') no-repeat;
}
Is there a way to make this work without needing to add another div?