Which pair of `transform-origin` CSS properties are equivalent when applied to a div with the following specifications? code example
Example: transform orgin css
div {
transform: rotate(45deg);
transform-origin: 20% 40%;
}
div {
transform: rotate(45deg);
transform-origin: 20% 40%;
}