2012-02-10 106 views
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; 
+0

我覺得有與背景夾的問題,但我似乎無法弄清楚。 – scottheckel 2012-02-10 14:02:53

回答