Is there any way to blur text so indicate it's a spoiler, using CSS, that will display the same across major browsers?
This is what I'm using:
.spoiler {
display: inline-block;
text-decoration: none;
color: transparent;
text-shadow: 0px 0px 5px #000000;
}
.spoiler:hover{
text-shadow: 0px 0px 0px #000000;
}
It looks right in FF, but in IE and on my mobile phone all I get is blank white spaces, which only displays the text on highlighting.
What I'm not sure is if CSS is the right solution. It ought to be, but it's just so inconsistent in its implementation.