I have a problem in applying multiple gradient property in css.
I want to apply two radial-gradient properties into a <div> element. This is what I did.
`
...
<style>
.gradient-bg {
background-image: radial-gradient(circle at 100% 15%, #1f3764 2%, #090915 10%), radial-gradient(circle at 0% 50%, red 2%, #090915 10%);
}
</style>
...
<div className="gradient-bg">
<div>...</div>
</div>
}
...
`
I thought this would work, but only the first radial-gradient property was applied, and not the second one.