Transform-origin: ================= ==> to define the position for transformations to apply, we need "transform-origin" property. Syntax: transform-origin : x-axis y-axis; ex: transform-origin : top left | top right | top center transform-origin : center left | center right | center center; transform-origin : bottom left | bottom right| bottom center; =================================== 3D Transformations =================== ==> 2-types: 1) scale3d(x-axis, y-axis, z-axis) 2) rotate3d(x-axis, y-axis, z-axis, deg) transform : scaled3d(x, y, z) | rotate3d(x, y, z, deg); Note: ===== To define multiple transformations one after another, we can use "key frame animations". =====================================