Z-index Problems On Ipad
There's a fixed positioned layer with a bottom z-index that keeps popping up over the top of a relative positioned layer with an upper z-index. When the above layer scrolls over th
Solution 1:
Add -webkit-transform: translate3d(0,0,0)
to the not fixed position elements on the same DOM level. In your case .innertube and maybe .box.
As seen here: Fixed positioning/z-index issue in mobile safari
Post a Comment for "Z-index Problems On Ipad"