Problem Statement
What does transform-origin control?
Explanation
`transform-origin` defines the point around which transforms like rotation or scaling occur. For example, `transform-origin: left top;` rotates around the top-left instead of the default center point.
Code Solution
SolutionRead Only
.icon { transform-origin: left top; transform: rotate(45deg); }Practice Sets
This question appears in the following practice sets:
