rotate
The rotate
CSS property allows you to specify rotation transforms individually and independently of the transform
property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the transform
property.
Syntax
/* Keyword values */ rotate: none; /* Angle value */ rotate: 90deg; rotate: 0.25turn; rotate: 1.57rad; /* x, y, or z axis name plus angle */ rotate: x 90deg; rotate: y 0.25turn; rotate: z 1.57rad; /* Vector plus angle value */ rotate: 1 1 1 90deg; /* Global values */ rotate: inherit; rotate: initial; rotate: revert; rotate: unset;
Values
- angle value
-
An
<angle>
specifying the angle to rotate the affected element through, around the Z axis. Equivalent to arotate()
(2D rotation) function. - x, y, or z axis name plus angle value
-
The name of the axis you want to rotate the affected element around (
"x"
, "y
", or "z"
), plus an<angle>
specifying the angle to rotate the element through. Equivalent to arotateX()
/rotateY()
/rotateZ()
(3D rotation) function. - vector plus angle value
-
Three
<number>
s representing an origin-centered vector that defines a line around which you want to rotate the element, plus an<angle>
specifying the angle to rotate the element through. Equivalent to arotate3d()
(3D rotation) function. none
-
Specifies that no rotation should be applied.
Formal definition
Initial value | none |
---|---|
Applies to | transformable elements |
Inherited | no |
Computed value | as specified |
Animation type | a transform |
Creates stacking context | yes |
Formal syntax
none | <angle> | [ x | y | z | <number>{3} ] && <angle>
Examples
Rotate an element on hover
HTML
<div> <p class="rotate">Rotation</p> </div>
CSS
.rotate { transition: rotate 1s; } div:hover .rotate { rotate: 1 -0.5 1 180deg; }
Result
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
rotate |
No |
No |
72
60-72
|
No |
No |
14.1 |
No |
No |
79
60-79
|
No |
14.5 |
No |
x_y_z_angle |
No |
No |
72
65-72
|
No |
No |
No |
No |
No |
65 |
No |
No |
No |
See also
Note: skew
is not an independent transform
value
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/rotate