transform transform-origin Syntax:
transform: none|transform-functions|initial|inherit;
Where,
none - Defines that there should be no transformation
initial - Sets this property to its default value.
inherit - Inherits this property from its parent element.
transform-functions - Transform functions include matrix(), matrix3d(), translate(), translate3d(), translateX(), translateY(), tranlateZ(), scale(), scale3d(), scaleX(), scaleY(), scaleZ(), rotate(), rotate3d(), rotateX(), rotateY(), rotateZ(), skew(), skewX(), skewY(), perspective().
CSS3 allows you to format your elements using 3D transformations. The transform property applies a 2D or 3D transformation to an element. The CSS3 transform property allows you to rotate, scale, move, skew elements. The transform-origin property allows you to change the position of transformed elements.