You are here : cssCSS 3transform

transform - CSS 3

The transform property applies a 2D or 3D transformation to an element. This property allows you to rotate, 
scale, move, skew, etc., elements.To better understand the transform property,
view a demo.


Syntax

transform: none|transform-functions|initial|inherit;


Example

div
	{   
	-ms-transform: rotate(7deg); /* IE 9 */    
	-webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
	   
	transform: rotate(7deg);
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference