Baseline Widely available
The rotateZ()
CSS function defines a transformation that rotates an element around the z-axis without deforming it. Its result is a <transform-function>
data type.
transform: rotateZ(90deg);
transform: rotateZ(-0.25turn);
transform: rotateZ(3.142rad);
<section id="default-example">
<img
class="transition-all"
id="example-element"
src="/shared-assets/images/examples/firefox-logo.svg"
width="200" />
</section>
The axis of rotation passes through an origin, defined by the transform-origin
CSS property.
Note: rotateZ(a)
is equivalent to rotate(a)
or rotate3d(0, 0, 1, a)
.
Note: Unlike rotations in the 2D plane, the composition of 3D rotations is usually not commutative. In other words, the order in which the rotations are applied impacts the result.
Syntax Valuesa
Is an <angle>
representing the angle of the rotation. A positive angle denotes a clockwise rotation, a negative angle a counter-clockwise one.
<rotateZ()> =Examples HTML
rotateZ( [ <angle> | <zero> ] )
<div>Normal</div>
<div class="rotated">Rotated</div>
CSS
div {
width: 80px;
height: 80px;
background-color: skyblue;
}
.rotated {
transform: rotateZ(45deg);
background-color: pink;
}
Result Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4