Is it possible to create text which has a linear gradient, a shadow and an outline.
My problem is that "-webkit-text-fill-color: transparent" is required for the gradient, so the shadow is on top of the text.
Is it possible to get the text on top of the shadow?
Here's my code:
p {
font-size: 100px;
background: linear-gradient(to bottom, red, blue);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 2px black;
text-shadow: 15px 15px black;
}
<p>Some Text</p>