styler
styler

Reputation: 16491

Android seems to render box-shadow like its an 8bit PNG, anyone know how to resolve this?

Im trying to give a div a deep inset box-shadow of -webkit-box-shadow:inset 0px 0px 83px 4px rgba(0, 0, 0, 0.9); but testing this in Android seems to make this effect look like its an 8bit PNG. Im testing on 2.3, iOS displays completely fine. Anyone encountered this problem?

Upvotes: 0

Views: 420

Answers (1)

davethegr8
davethegr8

Reputation: 11595

Android 4.0 and earlier does not support inset or blur radius on box-shadow. See the footnote on http://caniuse.com/css-boxshadow.

Upvotes: 1

Related Questions