rotateY()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
TherotateY()
CSSfunction defines a transformation that rotates an element around they-axis (vertical) without deforming it. Its result is a<transform-function>
data type.
In this article
Try it
transform: rotateY(0);
transform: rotateY(45deg);
transform: rotateY(-0.2turn);
transform: rotateY(3.142rad);
<section> <img src="/shared-assets/images/examples/firefox-logo.svg" width="200" /></section>
The axis of rotation passes through an origin, defined by thetransform-origin
CSS property.
Note:rotateY(a)
is equivalent torotate3d(0, 1, 0, a)
.
Note:Unlike rotations in the 2D plane, the composition of 3D rotations is usuallynot commutative. In other words, the order in which the rotations are applied impacts the result.
Syntax
rotateY(a)
Values
a
Is an
<angle>
representing the angle of the rotation. A positive angle denotes a clockwiserotation, a negative angle a counter-clockwise one.
Cartesian coordinates onℝ^2 | Homogeneous coordinates onℝℙ^2 | Cartesian coordinates onℝ^3 | Homogeneous coordinates onℝℙ^3 |
---|---|---|---|
This transformation applies to the 3D space and can't be represented on the plane. |
Formal syntax
<rotateY()> =
rotateY([<angle>|<zero>])
Examples
>HTML
<div>Normal</div><div>Rotated</div>
CSS
div { width: 80px; height: 80px; background-color: skyblue;}.rotated { transform: rotateY(60deg); background-color: pink;}
Result
Specifications
Specification |
---|
CSS Transforms Module Level 2> # funcdef-rotatey> |
Browser compatibility
Loading…
See also
transform
propertyrotate
property<transform-function>