- Home
- /
- Tutorials
- /
- CSS Tutorial
- /
- CSS Transform
CSS Animations & Transitions
CSS Transform
The CSS Transform property is used to change the position, size, rotation, or shape of an element without affecting the normal document layout.
Transforms allow you to:
- Move elements
- Rotate elements
- Resize elements
- Skew elements
- Create interactive UI effects
The transform property is widely used in modern web design, animations, hover effects, and user interfaces. The supporting concepts are explained in CSS 2D Transform and CSS 3D Transform.
Syntax
Transform Syntax
css
selector {
transform: function(value);
}