私はspecefic要素のためにすべてのブラウザでcss 3グラデーションを使用します。私はそのためhttp://www.colorzilla.com/gradient-editorを使用して、それには以下のコードを作成します。css3グラデーションはオペラでは機能しません
background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5));
background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
background: linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0);
それはOparaを除くすべての主要なブラウザで正常に動作します。
問題と解決策は何ですか?私はオペラ11.1
http://caniuse.com/css-gradients
http://caniuse.com/css-gradients – Andrew
私はあなたのCSSに何か問題が多分そこにある表示されません別の場所で問題が発生する... –
可能な複製[どのようにOperaでCSS3グラデーションを作成できますか?](http://stackoverflow.com/questions/4084614/how-can-you-create-a-css3-gradient-オペラ) – Jacob