I am trying to create the shadow of a background text in a circular way, but I have not been able to achieve it, I have only had the normal shadow. Next, I'll leave an example of what I'm trying to get
I only get this
With text-shadow you'll get what you propose. I have tried this to have a double shadow on each side. I hope that the result is what you set out to do.
h1 {
text-align: center;
text-shadow: -20px 0px 7px red, 20px 0px 7px blue;
}
<h1>V</h1>
To achieve that "circle" you must make a broader blur.
Example
body {
background-color: #ffffdf;
}
h2 {
color: #fff;
text-align: center;
text-shadow: -15px 0px 20px #FF00FF,
15px 0px 20px #00bbff;
}
<h2>❤</h2>
<h2>♕ MSW ♕</h2>