I’m trying to use the following CSS applied to a headline element and it works fine everywhere but not in Safari. It doesn’t render at all. How can I get it to render in Safari?:
.mission{
background: #DE90DE;
background: -webkit-linear-gradient(to right, #DE90DE 0%, #8F1344 100%);
background: -moz-linear-gradient(to right, #DE90DE 0%, #8F1344 100%);
background: linear-gradient(to right, #DE90DE 0%, #8F1344 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}