I am trying to replicate an image in css which should be possible. But the shadow / radius is way smaller and barely noticable with css. How can I increase the strongness / radius?
How I want it to be:
How it is with css (when I increase the radius it becomes barely noticeable):
My code:
text-shadow: 0px 0px 10px #fff;
CSS Syntax Note: To add more than one shadow to the text, add a comma-separated list of shadows.
By using a comma, we can specify multiple text shadows. Here we have created the first text shadow with the same color as th background to give a semi-3D effect.
If I understand your issue correctly, you just need to stack multiple shadows in order to achieve the desired effect:
h1 {
color: red;
text-shadow: 0px 0px 20px #fff, 0px 0px 20px #fff;
}
and a fiddle:
https://jsfiddle.net/4o6L4owd/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With