You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
getContainer() should skip parent nodes of position: absolute elements until it finds a “positioned” parent. For position: fixed it should skip directly to the viewport.
The text was updated successfully, but these errors were encountered:
For position: fixed it should skip directly to the viewport.
No, that's not particularly safe. Elements that have position:fixed are first positioned against the nearest ancestor that has a transform applied, before attempting to position against the viewport. You can only safely skip to the viewport if there is no such ancestor.
getContainer()
should skip parent nodes ofposition: absolute
elements until it finds a “positioned” parent. Forposition: fixed
it should skip directly to the viewport.The text was updated successfully, but these errors were encountered: