clarify visual authoring order vs mathematical application for transform property#43496
Open
clarify visual authoring order vs mathematical application for transform property#43496
Conversation
Contributor
|
Preview URLs (1 page) Flaws (9) Found an unexpected or unresolvable flaw? Please report it here. URL:
|
mao-sz
reviewed
Mar 19, 2026
Contributor
mao-sz
left a comment
There was a problem hiding this comment.
If the practical reality (as far as a developer would be concerned in order to know how to read composite transforms) is left-to-right, then animation-composition will require amending accordingly.
I do not know if similar right-to-left descriptions exist in other pages.
Contributor
Author
|
@mao-sz I think you are 100% correct, but I'd love to keep this PR focused on the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR clarifies the relationship between the written order of transform functions (left-to-right) and their mathematical application (right-to-left). It emphasizes that each function modifies the local coordinate system for subsequent functions, which is why the visual result follows the authoring order
Motivation
The current wording in the Values section ("effectively applied in order from right to left") creates a mental mismatch for developers. While mathematically true for point-mapping , it contradicts the visual intuition described in the Transform order section, where a rotation "tilts" the axes for a following translation. These changes bridge that gap by explaining that functions establish cumulative coordinate spaces.
Additional details
This clarification is based on the CSS Transforms Module Level 1 and 2 specifications:
Related issues and pull requests
Fixes #43180