I’m using this code for a div
background: url(../img/texturee.png), linear-gradient(left, #de2785 1%,#f954b1 50%,#de2785 100%);
and to add vendor prefixes I’m using this library http://leaverou.github.com/prefixfree/
It’s working fine in Chrome, Firefox, Safari, iPhone, iPad but not in Android 2.3.6 default browser. Am i doing something wrong?
http://caniuse.com/#search=gradients
Edit:
After @mdmullinax answer I changed it to
background: url(../img/texturee.png), -webkit-linear-gradient(left, #de2785 1%,#f954b1 50%,#de2785 100%);
but still not working.
possible you’ll need to use the outdated gradient syntax…
-webkit-gradientSurfin’ Safari – Blog Archive » Introducing CSS Gradients – documentation on outdated syntax
Surfin’ Safari – Blog Archive » CSS3 Gradients – see the paragraph on
Changes from -webkit-gradientcaniuse.com briefly notes this
but doesn’t provide any additional details
EDIT:
perhaps try