Seen discussions here but it has been 2 years!
I don't know if I'm using this right but I have the following sass/compass
code:
+text-shadow(red 0 3px 0 3px)
Generating the following css
:
text-shadow: red 0 3px 3px, red 0 3px 0 3px;
text-shadow: red 0 3px 0 3px, red 0 3px 0 3px;
Which not works in neither Chrome/Safari/Firefox/Opera.
Is this something with the declaration or this spread
feature was really removed from specs?