テキストグラデーションを使用しようとしています。ChromeとSafariで機能しますが、Androidでは、テキストではなくコンテンツにグラデーションが適用されます(したがって、グラデーション付きのテキストが表示される代わりに、グラデーション付きのボックスが表示されます。特にテキストが重要なので理想的です)。
これが私のSASSミックスインです:
@mixin text-gradient($from : #2bd2f2, $to : #218bb2) {
text-shadow: none;
background: -webkit-gradient(linear, left top, left bottom, from($from), to($to));
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
なぜこれが機能しないのかについて何か考えはありますか?
ありがとう!