|
|
|
|
|
by limitedmage
1097 days ago
|
|
On a large complex single page webapp, it can be very non-trivial to have a popup/modal over everything else in the page. That’s why things like React Portals[0] exist, as well as many, many libraries that provide similar functionality. z-index is not an absolute number and depends on your stacking context.
[0] https://react.dev/reference/react-dom/createPortal |
|