How to create gradient shadow in CSS
In this article, I will show you an easy way to create a gradient shadow in CSS.
Inside the HTML file first, create a div:
<div class="shadow">
<div class="circle">
</div>
Now it's time to give style it,
.shadow {
filter: blur(100px);
}
You can...
h.dhairyashah.dev1 min read