
Originariamente inviata da
tampertools
-webkit-, -moz-, ecc...
Cerca su internet quali di quelle proprietà vano "prefixate".
Di sicuro devi aggiungere questo:
background:-webkit-linear-gradient(0% 100% 89deg, #866400, #FF4E28 100%);
E poi aggiungi anche tutto senza prefissi
Conosci un editor per questo?
Edit:
codice:
background: #866400;
background: -moz-linear-gradient(top, #866400 0%, #ff4e28 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#866400), color-stop(100%,#ff4e28));
background: -webkit-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: -o-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: -ms-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: linear-gradient(to bottom, #866400 0%,#ff4e28 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#866400', endColorstr='#ff4e28',GradientType=0 );