Workaround/polyfill for Android 4.0.3 Stock browse

2019-04-21 07:44发布

I'm looking for a workaround or polyfill for the z-index bug described in this report: http://code.google.com/p/android/issues/detail?id=31862

My markup and CSS looks basically the same as the one given in the bug report.

It'd be really great if somebody could give me a hint in the right direction on how to solve this.

2条回答
男人必须洒脱
2楼-- · 2019-04-21 08:20

Alternative solution (found here: https://coderwall.com/p/7gjkug):

-webkit-backface-visibility: hidden;

查看更多
闹够了就滚
3楼-- · 2019-04-21 08:21

I had the same problem, and fixed it by adding the following css to my popups:

-webkit-transform:translateZ(0);
查看更多
登录 后发表回答