I got a list of items and, without position: absolute
, they render correctly like this:
Now, I do want to set position: absolute
, to place my container on top of the header (where it says "Sablier").
Yet, it hides the elements that are below the screen:
I set z-index: 1000;
on the container and made sure there's no other container on top of it. What's wrong?
Notes:
- It only happens on iOS.
- I don't want to set
bottom: 0
because the list may expand beyond the screen's height.