css transform properties are used to change the shape and positoin of the selected objects. the transform origin propery specifies the location of the elements transformation origin. by default, what is the location of the origin code example
Example: transform orgin css
div {
transform: rotate(45deg);
transform-origin: 20% 40%;
}