Reputation: 2018
I am trying to add bright blurred colour to my text, I tried using box shadow, but the outcome is too dark: How can I make it brighter?
text-shadow: #fff 1px 0 10px;
I am trying to achieve this
Upvotes: 0
Views: 36
Reputation: 8561
You can use multiple shadows at once to make it more shiny:
body {
background: black;
}
div {
text-shadow: #fff 1px 0 10px, #fff 1px 0 10px, #fff 1px 0 10px, #fff 1px 0 10px, #fff 1px 0 10px, #fff 1px 0 10px;
}
<div>MY WHATEVER</div>
Upvotes: 1