Slide 139
Slide 139 text
.my-element {
background-image: url(fallback.png);
background-image:
linear-gradient(transparent, transparent),
url(image.svg);
}
Fallback for CSS background-image
This works because it combines multiple backgrounds and old-syntax gradients,
thus it works for Android 2.x where multiple backgrounds alone did not.
You could use Modernizr too, but if you just need it for this, it would be overkill.
pauginer.tumblr.com/post/36614680636/invisible-gradient-technique