Could use some support here:
I'm building a web app that has to work pretty much the same across sites and devices. However, in iOS, fixed positioned element are not freed of their ancestor elements' z-index scope.
In other words, say element A is on top of element B, and element C is inside of element B...
On most devices, if I make element C fixed and z-index it above A, that will work.
But in iOS, element C retains the z-indexing of its parent, and gets painted below A, even when fixed.
Any advice?