CSS position Sticky and Z-Index overlay/modal
问题 i have a problem with the position: sticky and z-index I want my modal in the sticky-element to be overlayed by the overlay. With position: relative it works: the modal is before the overlay. But when I use Sticky the modal is behind the overlay. Hope it's understandable what I mean. Here's the example: .sticky { position: sticky; /* <-- dosen't work */ /* position: relative; /* <-- work */ top: 0; width: 100%; height: 200vh; background: red; } .modal { z-index: 1000; position: fixed; margin: