Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect offset calculation for elements positioned with transform: translate() in scrollIntoView #7716

Open
piecyk opened this issue Feb 4, 2025 · 0 comments · May be fixed by #7717
Open

Comments

@piecyk
Copy link
Contributor

piecyk commented Feb 4, 2025

Provide a general summary of the issue here

Incorrect offset calculation when child elements are positioned with transform: translateY() or translateX().

🤔 Expected Behavior?

The function should return the correct offset even when the child element is positioned using CSS transform: translateY() or translateX().

😯 Current Behavior

The current function only considers offsetTop and offsetLeft, which do not account for elements transformed using translateY() or translateX(). This results in incorrect positioning calculations.

💁 Possible Solution

Use getBoundingClientRect() to calculate the relative offset instead of relying on offsetTop and offsetLeft.

🔦 Context

No response

🖥️ Steps to Reproduce

  1. Create an element inside an ancestor with transform: translateY(100px);
  2. Use the current function to compute its relative offset
  3. Observe that the function does not account for the transformed position

Version

latest

What browsers are you seeing the problem on?

Chrome

If other, please specify.

No response

What operating system are you using?

macos

🧢 Your Company/Team

No response

🕷 Tracking Issue

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant