0
私はCSS3グラデーションとCSS3バックグラウンドクリップを持っていますが、Firefox、Safari、IEはそれらをレンダリングしません。これは私のコードです:CSS3はクロスブラウザレンダリングではありません
私はIEのためのpogidフィルタを試しましたが、何もしませんでした。
ありがとうございます!
background: linear-gradient(top, #b58600 0%, #ffbd00 100%);
background: -webkit-gradient(linear, left top, left bottom, color- stop(0%,#b58600), color-stop(100%,#ffbbd00));
background: -webkit-linear-gradient(top, #b58600 0%, #ffbd00 100%);
background: -moz-linear-gradient(top, #b58600 0%, #ffbd00 100%);
background: -o-linear-gradient(top, #b58600 0%, #ffbd00 100%);
background: -ms-linear-gradient(top, #b58600 0%, #ffbd00 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b58600', endColorstr='#ffbd00',GradientType=0);
background-clip: text;
-webkit-background-clip: text;
-moz-background-clip: text;
-o-background-clip: text;
-ms-background-clip: text;
-khtml-background-clip: text;
私は背景クリップとの問題があると感じるが、私はそれを把握するように見えることはできません。 – scottheckel