+ 2
How to make a transparent text, but leave a shadow of the text?
4 Antworten
+ 4
text-shadow can't work with transparent text, since it just create a layout behind the text.
use webkit-text-stroke
https://code.sololearn.com/W5FYihk9443T/?ref=app
+ 6
Just combine both text shadow and color properties together
.element {
text-shadow: 1px 1px 3px black;
color:transparent ;
}
+ 2
Thanks
+ 1
Thank you very much, but what if I need to leave a shadow just around the text?