Just a collection of quirks and issues that occur on browser platforms (particularly those unlikely to update)
864
stars
19
forks
source link
Android 4.0+ leaks styles into Shadow DOM if -webkit-appearance: none; is set. #41
Open
kpeatt opened 11 years ago
Summary:
Setting
-webkit-appearance-none
on inputs globally will cause any styles applied to leak into the Shadow DOM on Android browser 4.0+.Platforms:
How to reproduce:
-webkit-appearance: none
styling to theinput
selector.background: red;
on that selector.Reduced Example:
http://codepen.io/mobify/full/JxEoB
Workarounds:
Space anything you're applying
-webkit-appearance: none
on intohtml
orbody
.