I use Javacript to set CSS text-shadow property. Here is my code to set the text-shadow property:

var text = document.getElementById("text");
text.style.textShadow = "1px 1px 0 red";

But, I don't know how to unset it. How do I unset the CSS text-shadow property using Javacript? I tried text.style.textShadow = "0 0 0 0"; but it does not work.

link|improve this question

feedback

3 Answers

text.style.textShadow = "none";

Or, depending on your needs:

text.style.textShadow = "inherit";
link|improve this answer
+1 thanks it works! – Thunder Dec 7 '11 at 6:05
feedback

Try:

text.style.textShadow = "none";

In fact, playing around with this, setting it to "0 0", null, and "" all seem to work as well.

See working test: http://jsfiddle.net/YwPF9/

link|improve this answer
+1 thanks it works! – Thunder Dec 7 '11 at 6:05
feedback

I think

text.style.textShadow = "0 0";
link|improve this answer
+1 Thanks for effort but the code doesn't work. – Thunder Dec 7 '11 at 6:05
work: jsfiddle.net/Vv68j – Mike Dec 7 '11 at 6:08
I'm using FireFox 8, using that code to unset, my text still looking bolder. That is not the same before applying the text-shadow property – Thunder Dec 7 '11 at 6:10
mmm, i have chrome and it works. – Mike Dec 7 '11 at 6:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.