Rotate
.rotate-x-{number}
.rotate-x-{number}
Applies a 3D rotation around the x-axis to the element.
CSS equivalent: transform: rotateX({number}deg);
Example usage:
.rotate-y-{number}
.rotate-y-{number}
Applies a 3D rotation around the y-axis to the element.
CSS equivalent: transform: rotateY({number}deg);
Example usage:
.rotate-z-{number}
.rotate-z-{number}
Applies a 3D rotation around the z-axis to the element.
CSS equivalent: transform: rotateZ({number}deg);
Example usage:
Last updated