I've seen codes using text-shadow to make the text have a plain color outline, like this post describes: CSS Font Border? but I would like to use an image for the border. When I add
border-image: url ( );
to this code:
.mytext {
background: url( );
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
it adds an image border around the entire piece of text, instead of one that contours to the letters. Is there any fix for this?